开发者

Web Forms Routing not having correct path to images, css, scripts

I am trying to use new .net 4.0 Routing for Web Forms with mixed success.

    protected void Application_Start(object sender, EventArgs e)
    {
        RegisterRoutes(RouteTable.Routes);

    }

    public static void RegisterRoutes(RouteCollection route开发者_开发问答s)
    {
        routes.MapPageRoute(
            "", "article/{id}/{title}", "~/ar.aspx", true, new RouteValueDictionary{{"id", "[0-9]*"}, {"title", ""}}
        );  
    }

Routing as such works well on a local machine as well as a remote server. However, I am unable to find out how to set up routing in such a way that server ignores routing for images, css and scripts so it will be read as http://address/css/text.css instead of http://address/article/1212/some-text/css/text.css

The only way I can make this work if I put tag into but I am sure it can be done other way.

I would appreciate any help on this topic.

Fero


You should have an additional final Home route that routes everything that is not article/

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜