views:

57

answers:

3

I Have url like "http://www.mysite.com/aspx/downloaddoc.aspx?J01001"

I want this to be easily accesible by typing out: "http://www.mysite.com/Whitepapers/J01001"

What would be the best way to achieve this?

Thanks in Advance

Shashi.

A: 

Convert your project to one based on ASP.NET MVC (check out this link).

Alex
A: 

The simplest:

http://urlrewriter.net/

jvenema
+1  A: 

Have a look at this URL rewriting module (IIS7). If you don't have IIS7, you might want to check out this very helpful article on URL rewriting by Scott Guthrie. Or use ASP.NET MVC.

Max