我正在尝试使用简单的URL重写。
我正在尝试将页面加载时的URL缩短为其简化版本(无文件扩展名)。我没有在我的URL中使用任何查询字符串。
以下是当前网址:
http://localhost:64341/Report/MainPage.aspx
当页面加载时,我想看到这个:
http://localhost:64341/Report/MainPage
以下是我在Global.asax文件中的代码:
protected void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
RegisterRoutes(RouteTable.Routes);
}
public static void RegisterRoutes(RouteCollection routeCollection)
{
routeCollection.MapPageRoute("RouteForCustomer", " MainPage", "~/ MainPage.aspx");
}
如何在页面加载后的代码中实现此目的?
答案 0 :(得分:0)
尝试Context.RewritePath("http://localhost:64341/Report/MainPage", true);
查看此博客 http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx