0

我必须创建的是我迁移出访问权限的表单。我创建了 4 个 asp 页面。现在他们想要的是在写入 SQL 数据库之前以某种方式存储用户输入值,直到他们到达最后一页。在提交的最后一页之前存储这些数据的最简单方法是什么?我可以尝试一个数组甚至是 java 脚本?

4

3 回答 3

1

您可以使用会话对象 - http://msdn.microsoft.com/en-us/library/ms525095(v=vs.90).aspx

于 2013-10-28T15:14:42.713 回答
1

正如其他答案中所建议的那样,您可以使用会话变量。另一种方法是使用隐藏的表单字段将它们从一个页面传递到另一个页面,例如

<input name="yourvariable" type="hidden" value="<%=Request.Form("yourvariable")%>

没有正确答案,这是你最满意的一个案例

于 2013-10-28T19:35:04.757 回答
0

“get_user_info.asp”

<html>
<head></head>
<body>
<form id='frm_user_info' name='frm_user_info' method='post' action='get_user_info_go.asp'>
<table cellspacing='3'>
<tr>
<td align=right>Name</td>
<td><input type='text' id='s_name' name='s_name' size='40'></td>
</tr>
<tr>
<td></td>
<td><input type='submit' value='Next'></td>
</tr>
</table>
</form>
</body>
</html>

“get_user_info_go.asp”

<%
s_name=request.form("s_name")
if (s_name="") then response.redirect("get_user_info.asp")
session("s_name")=s_name
response.redirect("next_page.asp")
%>
于 2013-10-29T15:52:11.430 回答