Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a small task to do, and figured it would be better to start here than doing it wrong then coming here again. I need to replace my URLs with a more friendly format as the following: Current: www.MySite.com/default.aspx?userID=XX I want it the users to type : www.MySite.com/user/(UserName)

Also, Current: www.MySite.com/default.aspx?userID=XX&ref#XX I want the users to type: www.MySite.com/user/(UserName)/ref#{refno}

Thanks in advance

PS: I do not want to use Asp.net MVC.

share|improve this question

4 Answers

You can use the MVC Routing Feature without using MVC, as it's a separate component built on top of ASP.net.

There is an article on 4GuysFromRolla about this.

share|improve this answer

You can use routing in Webforms:

Using ASP.NET Routing Without ASP.NET MVC

share|improve this answer

If you can, I'd just use IIS7 URL Rewriting for that. Your mapping configuration can go in your web.config, and you wouldn't have to change your application at all.

share|improve this answer
Cool, and how can I do it?! :) – Maen Jul 27 '09 at 8:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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