带有QueryString的AbsolutePath

时间:2013-10-04 16:19:28

标签: c# asp.net

我有以下代码:

     if (Request.Url.AbsolutePath == "/Guidance.aspx")
        {
            if (Request.IsSecureConnection)
            {
              Reponse.Redirect("http://www.example.com/Guidance.aspx");
            }
            return;
        }

事实是,Guidance可以有一个查询字符串。我喜欢然后重定向到相同的页面名称并附加查询字符串。还没有找到办法做到这一点。

     if (Request.Url.AbsolutePath == "/Guidance.aspx?id='vid09'")
        {
            if (Request.IsSecureConnection)
            {
              Reponse.Redirect("http://www.example.com/Guidance.aspx?id='vid09'");
            }
            return;
        }

如何简化上面的代码,以便使用任何查询字符串。

3 个答案:

答案 0 :(得分:3)

使用UriBuilder并替换您需要的部件。类似的东西:

var builder = new UriBuilder(Request.Url);
builder.Scheme = "http";
Reponse.Redirect(builder.ToString);

答案 1 :(得分:0)

string myUrl = Request.RawUrl.toString();
if (myUrl.Contains("/Guidance.aspx")
    {
        if (Request.IsSecureConnection)
        {
          var queryString = myUrl.Substring(myUrl.IndexOf("?"));
          Reponse.Redirect("http://www.example.com/Guidance.aspx" + queryString);
        }
        return;
    }

答案 2 :(得分:0)

不要花哨,已经为你解析了URI(不要用不可靠的正则表达式自己做)。您正在使用的Url属性是System.Uri对象。您可以简单地比较方案,主机和您可能需要的任何HTTP段,然后通过仅添加原始URI中的查询字符串组件来构建重定向URI。您只需要Uri课程。