In ASP.Net
it is posible to get same content from almost equal pages by URLs like
localhost:9000/Index.aspx
and localhost:9000//Index.aspx
or even localhost:9000///Index.aspx
But it isn't looks good for me.
How can i remove this additional slashes before user go to some page and in what place?
Use this :
url = Regex.Replace(url , @"/+", @"/");
it will support n times