Click here to Skip to main content
15,892,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello friends,

How to change the URL http://xyz.com/aboutus-overview.aspx to http://xyz.coom/about/overview.aspx
through URLRewriting in asp.net 4.0.

Like:

Click Me
on clicking the above link browsers url will show just http://xyz.com/aboutus-overview.aspx
but i have to change it to http://xyz.coom/about/overview.aspx

Thanks.
Posted
Updated 4-Oct-13 21:32pm
v3

1 solution

C#
var str="http://xyz.com/aboutus-overview.aspx"
str=str.replace("-","")
 
Share this answer
 
Comments
Mr pawan 5-Oct-13 3:25am    
dear ehsan, your answer is not enough to change the URL.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900