标签: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); } }
标签:style blog io color ar sp div on log
原文地址:http://www.cnblogs.com/han1982/p/4096373.html