Posted on: 3/24/2014 1:24:09 PM | Views : 502

when i want to view product details i send a query string like: MyProject/ProductDetails.aspx?id=11
now using RoutingUrl produce Url like: Product/11
Is it possible to also change the parameter value 11 to a descriptive value instead '. Although i would require to extract the match variable value inorder to filter control ! 

   following Rule applied.
routes.MapPageRoute("ProductByNameRoute", "Product/{ProductName}", "~/MyProject/ProductDetails.aspx")

Go to the complete details ...