HttpContext.Current.RewritePath方法重写URL
if (!IsPostBack) { //如果请求ID为空,则重写URL为:~/index.aspx?ID=shouji.115sou.com if (Request.QueryString["ID"]==null || Request.QueryString["ID"].Trim()=="") { HttpContext.Current.RewritePath("~/index.aspx?ID=shouji.115sou.com"); } Response.Write(Request.QueryString["ID"]); }
Name | Description | |
---|---|---|
RewritePath(String) | 重写URL的路径 | |
RewritePath(String, Boolean) | 重写URL的路径和一个布尔值,指定是否对服务器资源虚拟路径的修改。 | |
RewritePath(String, String, String) | 重写URL通过使用给定的路径,路径信息,和查询字符串信息。 | |
RewritePath(String, String, String, Boolean) | 重写URL使用给定的虚拟路径,路径信息,查询字符串信息,和一个布尔值,指定是否客户端文件路径设置为重写路径。 |
//成功一定有方法,失败一定有原因。