I need to be able to get at the full URL of the page I am on from a user control. Is it just a matter of concatenating a bunch of Request variables together? If so which ones? Or is there a more simpiler way?
|
|
|
|
|
|
|
I usually use |
||
|
|
|
|
Request.RawUrl |
||
|
|
|
|
if you need the full URL as everything from the http to the querystring you will need to concatenate the following variables
|
||
|
|
|
|
Thanks guys, I used a combination of both your answers @Christian and @Jonathan for my specific need.
I don't need to worry about secure http, needed the servername variable and the RawUrl handles the path from the domain name and includes the querystring if present. |
||||
|
|
|
This property does everything you need, all in one susinct call. |
||
|
|
|
|
Request.Url.AbsoluteUri it worked |
||
|
|
