I'm new in the iis url rewrite module and i not how to do this.
for example i have this url:
http://localhost/section.aspx?x=section1&IDSection=45
And i want this:
http://localhost/section~x~section11~IDSection~45.html
Any ideas? Thanks for your help.
this is the solution using URL Rewrite module in IIS7:
You can do this in c# to use a customized extension in your URL in ASP.NET.
What you need to do is write a handler. That way you can capture the extension and then parse it as needed. This will be invisible to the user. Handler is definitely the way you want to go as if you use URL Routing, you will still need to change the handler from aspx to html in IIS.