So, I have been writing an application that pulls a product via is ID (guid).
Example URL: www.xyz.com/Products/ViewProduct.aspx?id={guid}
I would love to rewrite the URL to the follow:
www.xyz.com/Products/Widget1 but the name of the product is in a database. Can I use the routing to do this? All the examples I have read pull the details from the querystring to use in the rewriting process.
c# .net 4.0 (non mvc)
Thanks in adanced.
Phillip
Go to the complete details ...