请教个网页重定向的问题
a.asp
<%
user=request.from("username")
pass=request.form("password")
city=request.from("city")
if city="北京" then
response.redirect ("b.asp?us=user&ps=pass&city=北京")
end if
if city="上海" then
response.redirect ("b.asp?us=user&ps=pass&city=上海")
end if
%>
我想问一下为什么这样写只能把us=user&ps=pass传过去了而不能把真正获取到的值到b.asp中.是不允許這樣写还是我写的有错误.