Showing posts with label IIS. Show all posts
Showing posts with label IIS. Show all posts

Monday, September 21, 2009

IIS Url Forwarding

One easy way of forwarding can be stablished from within the Web.config in the system.web section:


<urlmappings enabled="true"><blockquote><p><urlmappings enabled="true">
<add mappedurl="~/default.aspx?parm1=1" url="~/home">
<add mappedurl="~/Products.aspx" url="~/products">
<add mappedurl="~/Product.aspx?id=1" url="~/product">
</urlmappings>