Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi.

i want to route url using route handler i tried some code but it doesn't work out.

in Global page:

RouteTable.Routes.Clear();
     RouteTable.Routes.Add("MyCustomRoute", new Route("{Name}", new CustomRouteHandler("~/Index.aspx")));


and the class which implements handler is

public class CustomRouteHandler : IRouteHandler {

  
    IHttpHandler IRouteHandler.GetHttpHandler(RequestContext requestContext)
    {
        string virtualPath = "~/Index.aspx";

        return BuildManager.CreateInstanceFromVirtualPath(virtualPath, typeof(Page)) as IHttpHandler;
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }

}


in index page:

string a =(string) Page.RouteData.Values["Name"];

i am trying for this since four days. i cant able to understand where i am going wrong...please help me.the same code i tried in another project it is working there. i cant able to do it in my project..

Error: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.

Thanks in advance..
Posted
Updated 18-Jan-13 20:15pm
v2

1 solution

your problem is not so much clear.
in some case regarding URL rewriting when your rewrite URL point to none exists physical page then 404 problem occured. and this problem can be solved by
add this tag in your web.config file

XML
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
...
</modules>
</system.webServer>


http://codingsack.com/question/5/global.asax-application-beginrequest-not-firing-problem-occurs-during-.html[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900