我正在尝试使用简单的 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");
}
页面加载时如何在后面的代码中实现这一点?