AbsolutePath with QueryString
本文关键字:QueryString with AbsolutePath | 更新日期: 2023-09-27 18:33:52
我有以下代码:
if (Request.Url.AbsolutePath == "/Guidance.aspx")
{
if (Request.IsSecureConnection)
{
Reponse.Redirect("http://www.example.com/Guidance.aspx");
}
return;
}
问题是指南可以有一个查询字符串。我喜欢然后重定向到相同的页面名称并附加查询字符串。还没有找到做到这一点的方法。
if (Request.Url.AbsolutePath == "/Guidance.aspx?id='vid09'")
{
if (Request.IsSecureConnection)
{
Reponse.Redirect("http://www.example.com/Guidance.aspx?id='vid09'");
}
return;
}
我如何简化上面的代码以使用它出现的任何查询字符串来做到这一点。
使用 UriBuilder 并更换您需要的部件。像这样:
var builder = new UriBuilder(Request.Url);
builder.Scheme = "http";
Reponse.Redirect(builder.ToString);
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;
}
不要花哨,URI 已经为您解析了(不要使用不可靠的正则表达式自己做)。您正在使用的 Url 属性是一个 System.Uri 对象。您可以简单地比较方案、主机和您可能需要的任何 HTTP 段,然后通过仅添加原始 URI 中的查询字符串组件来构造重定向 URI。您所需要的只是在 Uri 类中。