I am having issues with my URL routing in ASP.net.
I added Telerik controls this past week and I don't have my URL routing code correctly. I believe the issue is on my URL routing part.
Here is my current URL Routing code:
routes.MapPageRoute(
"UrlCodeId_Name", // Route name
"{NM}", // Route URL
"~/Test/Test.aspx" // Web page to handle route
);
This is what I want to do...
If the user puts in the url: http://www.mydomain.com/24 I want that to take them to Page ~/Test/Test.aspx and process id #24 and show them their information. I discussed this with Telerik support (since it was
breaking once I added their controls) and they informed me the Route URL can't just have a place holder. So how do I do a URL map to a specific page where I want the information to b ...
Go to the complete details ...