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

asp.net URL重写

时间:2014-11-14 06:57:28      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   div   on   log   

Context.RewritePath 方法重写URL

void Application_BeginRequest(object sender, EventArgs e)
    {
        string url = Request.AppRelativeCurrentExecutionFilePath;
        //~/NewsAdmin/NewsList.aspx?pages=2
        //~/NewsAdmin/NewsList_2.aspx
        Match match = Regex.Match(url, @"(~/NewsAdmin/NewsList)_(\d+)(.aspx)");
        if (match.Success)
        {
            url = match.Groups[1].Value + match.Groups[3].Value + "?pages=" + match.Groups[2].Value;
            Context.RewritePath(url);
        }
    }

 

asp.net URL重写

标签:style   blog   io   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/han1982/p/4096373.html

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