ASP里表单提交后怎么保留提交前写的数据 5
在ASP表单里的输入框里输入了信息,我想在表单提交后还是提交到的本页面,同时表单的输入框里的信息还在并且可以更改,应该怎么做?把输入框里输入了信息从提交页面在传回来不就可...
在ASP表单里的输入框里输入了信息,我想在表单提交后还是提交到的本页面,同时表单的输入框里的信息还在并且可以更改,应该怎么做?
把输入框里输入了信息从提交页面在传回来不就可以了吗
这个具体应该怎么做?
你们说的我都试过了,提交到本页面以后,输入框里的信息就没有了,没有保留下来。 展开
把输入框里输入了信息从提交页面在传回来不就可以了吗
这个具体应该怎么做?
你们说的我都试过了,提交到本页面以后,输入框里的信息就没有了,没有保留下来。 展开
5个回答
展开全部
给你举一个简单的例子吧,假如说这个页面是:book.asp。
<html>
<style type="text/css">
<!--
.STYLE2 {font-size: 10pt; }
-->
</style>
</head>
<body>
<%
namer=request.form("name")
sex=request.form("sex")
age=request.form("age")
if trim(sex)="男" then
s1="checked"
else
s2="checked"
end if
if trim(age)="20-30" then
a1="selected"
else
a2="selected"
end if
%>
<form id="form1" name="form1" method="post" action="book.asp">
<table width="331" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="58" height="30"><div align="center" class="STYLE2">姓名</div></td>
<td width="267" height="30">
<input name="name" type="text" id="name" value="<%=namer%>">
</td>
</tr>
<tr>
<td height="30"><div align="center" class="STYLE2">性别</div></td>
<td height="30">
<input type="radio" name="sex" value="男" <%=s1%>>
<span class="STYLE2">帅男</span>
<input type="radio" name="sex" value="女" <%=s2%>>
<span class="STYLE2">靓女</span></td>
</tr>
<tr>
<td height="30"><div align="center" class="STYLE2">年龄</div></td>
<td height="30"><select name="age" id="age">
<option value="20-30" <%=s1%>>20-30</option>
<option value="30-40" <%=s2%>>30-40</option>
</select> </td>
</tr>
<tr>
<td height="30"> </td>
<td height="30">
<input type="submit" name="Submit" value="提交" />
</td>
</tr>
</table>
</form>
</body>
</html>
你复制一下看看,这是我简单做了一个例子,希望能帮助你。
<html>
<style type="text/css">
<!--
.STYLE2 {font-size: 10pt; }
-->
</style>
</head>
<body>
<%
namer=request.form("name")
sex=request.form("sex")
age=request.form("age")
if trim(sex)="男" then
s1="checked"
else
s2="checked"
end if
if trim(age)="20-30" then
a1="selected"
else
a2="selected"
end if
%>
<form id="form1" name="form1" method="post" action="book.asp">
<table width="331" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="58" height="30"><div align="center" class="STYLE2">姓名</div></td>
<td width="267" height="30">
<input name="name" type="text" id="name" value="<%=namer%>">
</td>
</tr>
<tr>
<td height="30"><div align="center" class="STYLE2">性别</div></td>
<td height="30">
<input type="radio" name="sex" value="男" <%=s1%>>
<span class="STYLE2">帅男</span>
<input type="radio" name="sex" value="女" <%=s2%>>
<span class="STYLE2">靓女</span></td>
</tr>
<tr>
<td height="30"><div align="center" class="STYLE2">年龄</div></td>
<td height="30"><select name="age" id="age">
<option value="20-30" <%=s1%>>20-30</option>
<option value="30-40" <%=s2%>>30-40</option>
</select> </td>
</tr>
<tr>
<td height="30"> </td>
<td height="30">
<input type="submit" name="Submit" value="提交" />
</td>
</tr>
</table>
</form>
</body>
</html>
你复制一下看看,这是我简单做了一个例子,希望能帮助你。
展开全部
<%
Dim strUserName
strUserName = ""
if request.form("username") <> "" Then
strUserName = request.form("username")
End If
%>
....
<form>
<input type=text name="username" value="<%=strUserName%>">
</form>
......
Dim strUserName
strUserName = ""
if request.form("username") <> "" Then
strUserName = request.form("username")
End If
%>
....
<form>
<input type=text name="username" value="<%=strUserName%>">
</form>
......
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
右键点击提交后的页面,在菜单中点击【后退】即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2007-06-28
展开全部
把输入框里输入了信息从提交页面在传回来不就可以了吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
上面那个数据库都没连接怎么行啊,实际上应该是先不数据存如数据库,然后读出来显示在页面中
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询