将查询字符串添加到响应重定向ASP VB.NET

时间:2013-12-17 10:55:46

标签: asp.net vb.net query-string response.redirect

我正在尝试将查询字符串中的值添加到响应重定向中。我在下面添加了我的代码,任何帮助都会很棒。

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

2 个答案:

答案 0 :(得分:4)

Response.Redirect("Yourpage.aspx?UserId="+location);

答案 1 :(得分:2)

使用时会发生什么:

Response.Redirect("http://mysite.co.uk/location/" & Request.QueryString("LOCATION"))