我有以下代码:
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;
}
如何简化上面的代码以使用任何出现的查询字符串来完成它。