页面参数传递
input.htm如下:
输入用户信息
showinfo.asp如下: 读取表单数据
<%
function replacebr(ByVal mystr)
replacebr=replace(mystr,chr(13),"
")
end function
%>
用户名: <%=request.form("userid")%>
密码:<%=request.form("pwd")%>
确定密码:<%=request.form("pwd2")%>
性别:<%=request.form("R1")%>
所在城市:<%=request.form("location")%>
兴趣爱好:
<%
if request.form("c1")="on" then
response.write "文艺"
end if
if request.form("c2")="on" then
response.write "体育"
end if
if request.form("c1")="on" then
response.write "电脑"
end if
%>
自我介绍:
<%=replacebr(request.form("s1")%>
参数怎么不能从input.htm传递到showinfo.asp 呢,急,帮我看一下