<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>实现表单</title>
</head>
<body>
<h1 align="center">用户反馈表单</h1>
<form method="post">
<p>姓 名:
<input type="text" class="txt" size="12" maxlength="20" name="username"/>
</p><p>性 别:
<input type="radio" value="male"/>男
<input type="radio" value="female"/>女
</p><p>年 龄:
<input type="text" class="txt" name="age"/>
</p><p>联系电话:
<input type="text" class="txt" name="tel"/>
</p><p>电子邮件:
<input type="text" class="txt" name="email"/>
</p><p>联系地址:
<input type="text" class="txt" name="address"/>
</p><p>请输入您对网站的建议<br>
<textarea name="yourworks" cols="50" rows="5"></textarea>
<br>
<input type="submit" name="submit" value="提交"/>
<input type="reset" name="reset" value="清除"/>
</p>
</form>
</body>
</html>
HTML用户反馈表单
时间: 2024-11-05 19:35:00
HTML用户反馈表单的相关文章
反馈表单(留言)相关
1.反馈表单的提交后跳转页: 在表单中加入: <input name="bid" type="hidden" value="2"> //这个是你反馈信息的分类ID(没有的话在FF等非IE浏览器不能提交) <input name="ecmsfrom" type="hidden" value="跳转地址">//这个是需要提交后跳转的地址 2.修改“反馈”.“留言”这些
SSH系列:(12)用户管理-表单校验
在用户的新增(add).编辑(edit)中对用户名(username).密码(password)进行非空校验和帐号(account)的唯一性校验. 需要注意的是在编辑页面(editUI.jsp)中帐号(account)的唯一性校验要排除当前编辑的帐号,不然将出现无法保存的情况. 1.JSP页面 在jsp页面中,分别进行两个时机的校验,①是在编辑帐号(account)的表单域时需要到服务器中校验是否已经存在输入的帐号:②在提交(submit)表单时再次进行校验,避免在填写表单时帐号已被使用的情况:
编写HTML表单提交并接受数据信息(获取用户通过表单提交的内容)
MyInfoForm.java package com.fxl; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServlet
【转载】6款漂亮HTML CSS样式用户留言表单
首先我们要在网页中加上常用的几个标签文本,比如姓名,电子邮件,内容以及提交按钮,然后我们针对这些字段文本增加和修改样式就可以. <form action="" method="post" class="STYLE-NAME"><h1>Contact Form<span>Please fill all the texts in the fields.</span></h1><labe
用户输出表单处理php
php中的表单输入处理,我用两个文件,在linux输出: touch php_post1.html php_post1.php php_post1.html代码如下: 1 <!doctype html> 2 <html> 3 <head> 4 <title>POST方式数据提交</title> 5 <meta http-equiv="content-type" content="text/html"
Liferay 6.2 改造系列之十三:修改用户编辑页面表单内容
为简化用户编辑,删除无用内容: 在/portal-master/portal-impl/src/portal.properties文件中,有如下配置: # # Input a list of sections that will be included as part of the user form # when adding a user. # users.form.add.main=details,organizations,personal-site users.form.add.ide
6款漂亮HTML CSS样式用户留言表单
<form action="" method="post" class="STYLE-NAME"><h1>Contact Form<span>Please fill all the texts in the fields.</span></h1><label><span>Your Name :</span><input id="name
漂亮CSS样式用户留言表单
基本样式 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Form</title> </head> <body> <form action="" method="post" class="basic-grey">
Spring Security默认的用户登录表单 页面源代码
<html><head><title>Login Page</title></head><body onload='document.f.j_username.focus();'> <h3>Login with Username and Password</h3><form name='f' action='/spring-security-samples-tutorial-3.0.8.RELEASE/j