Click here to Skip to main content
15,885,890 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Professionals ,

I have a problem in URL rewriting .i have multiple parameters in that url .

My Map URL is ,


C#
private void RoutingData(RouteCollection routeCollection)
        {
            routeCollection.Ignore("");
            routeCollection.Ignore("{resource}.axd/{*pathInfo}");
            routeCollection.Ignore("{resource}.aspx/{*pathInfo}");
            
            
            routeCollection.MapPageRoute("Temp1", "{OrgId}/{Template}/{Id}", "~/Quotes.aspx");
            
        }


i can't open the above url .it's always says not found..how can i resolve this problem..please sort out my question.

Thanks in advance
Posted
Updated 19-May-15 23:49pm
v2
Comments
Richard Deeming 20-May-15 7:36am    
This tool[^] by Phil Haack might help.

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