我正在尝试将查询字符串中的值添加到响应重定向中。我在下面添加了我的代码,任何帮助都会很棒。
If Boolean.Parse(ConfigurationManager.AppSettings.Item("Development")) Then
If Request.QueryString("ABC") = "Y" Then
Session("Website") = "abc"
End If
If Not Request.QueryString("LOCATION") = "" Then
Response.Redirect "mysite.co.uk/location/" & Request.QueryString("LOCATION")
End If
End If
答案 0 :(得分:4)
Response.Redirect("Yourpage.aspx?UserId="+location);
答案 1 :(得分:2)
使用时会发生什么:
Response.Redirect("http://mysite.co.uk/location/" & Request.QueryString("LOCATION"))