码迷,mamicode.com
首页 > Web开发 > 详细

HttpContext.Current.RewritePath方法重写URL

时间:2015-03-20 12:17:14      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

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"]);
 }

  

 NameDescription
技术分享 RewritePath(String) 重写URL的路径
技术分享 RewritePath(String, Boolean) 重写URL路径和一个布尔值,指定是否服务器资源虚拟路径的修改
技术分享 RewritePath(String, String, String) 重写URL通过使用给定的路径路径信息和查询字符串信息
技术分享 RewritePath(String, String, String, Boolean) 重写URL使用给定的虚拟路径路径信息查询字符串信息一个布尔值,指定是否客户端文件路径设置为重写路径

HttpContext.Current.RewritePath方法重写URL

标签:

原文地址:http://www.cnblogs.com/zhaozi/p/4353007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!