void Application_BeginRequest(object sender, EventArgs e)
{
//正则匹配或者其他方式的比较 当前的Request.Url是不是
//如果是则 Context.RewritePath("你要去的URL", "", "");
if(Request.Url.ToString()=="/user/zhangsan/store/book.aspx")
{
Context.RewritePath("/store/book.aspx", "", "");
return;
}
}
博闻现在又添加不了收藏了