我正在尝试将用户重定向到相当于桌面页面的移动页面。现在我只能让他们到主页。
If b.test(u) or v.test(Left(u,4)) then response.redirect("/mobile.asp") End If
我想使用其他正确的变量重定向到移动页面。所以重定向响应应该是"/mobile.asp?m=here"
来自"/home.asp?m=here"
页面和"/mobile.asp?m=there"
来自"/home.asp?m=there"
等。
我可以获取变量,<% Response.Write(Request.ServerVariables("QUERY_STRING")) %>
但是当我尝试连接重定向时,我的语法必须关闭
If b.test(u) or v.test(Left(u,4)) then response.redirect("/mobile.asp?&Response.Write(Request.ServerVariables("QUERY_STRING"))&""") End If
帮助不大。谢谢。