vote up 2 vote down star
5

I'm currently using Intelligencia.UrlRewriter does anyone have better suggestions?

flag

Can you expand on the question. What is it that you don't like about the current solution? If you are merely looking for alternatives, maybe you should rephrase your question. – Sklivvz Sep 24 '08 at 7:38

5 Answers

vote up 7 vote down check

System.Web.Routing is part of .NET 3.5 SP1 and you can use it both for your ASP.NET WebForm-application and your MVC-application.

The official ASP.NET site has a good QuickStart Tutorial on System.Web.Routing.

link|flag
vote up 3 vote down

ISAPI_Rewrite is also a good generic solution - works not only with ASP.NET but with any other system.

link|flag
To clarify, any other ISAPI compatible (IIS) system. – Greg Ogle Sep 24 '08 at 14:55
vote up 2 vote down

An alternative approach to consider is URL routing. This is not the same as rewriting (rewriting involves changing one URL to another whilst routing involves directly mapping dynamic URLs to different parts of your application) and is not so easy to implement for an existing project, but if you're starting a project from scratch you might find this a better approach depending on your exact requirements. On the other hand, it may be no use to you at all, but at least you can make an informed decision!

link|flag
vote up 1 vote down

Following the suggestion made by Seb Nilsson I looked a bit all over google and found these nice examples:

When working with IIS 6 it is important to have a look at this Blog

link|flag
vote up 0 vote down

IIS 7 comes with a rewrite module

You can find further links in this wikipedia article

link|flag
Isn't this static in the Web.Config ? – Alexandre Brisebois Sep 24 '08 at 10:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.