2

我正在尝试使用简单的 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");
    }

页面加载时如何在后面的代码中实现这一点?

4

1 回答 1

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

于 2013-02-09T07:00:25.433 回答