Hello,
For example I have a site structure
Default.aspx
Members/Default.aspx
Members/Info.aspx
Members/About.aspx
I want to create a route:
when user types http//mysite.com/UserName
physical path will be http//mysite.com/Members/Default.aspx
when user types http//mysite.com/UserName/Info.aspx
physical path will be http//mysite.com/Members/Info.aspx
when user types http//mysite.com/UserName/About.aspx
physical path will be http//mysite.com/Members/About.aspx
I want to replace "Members" part of the url by any "UserName" that user will type, all other should be the same.
Thanks!
View Complete Post