what you are trying to acheive is something called "URL rewriting" or "URL mapping" .. one of the ways to do it is
http://www.developer.com/n
Search on google for the "URL maping" or "URL rewriting" and you will get lots of solutions for the same. .. you can select one of the approach that is fit for you ..
Rejo
Main Topics
Browse All Topics





by: FareedPosted on 2007-06-11 at 21:40:30ID: 19263670
Hi, its simple
ri
For vb.net with asp.net 2.0 you use :
Me.header1.Title = Me.Request.Url.AbsoluteUri
And for c# with asp.net 2.0 you can use:
this.header1.Title = this.Request.Url.AbsoluteU
header1 is the id of html header tag which is by default server side control in asp.net 2.0.