vote up 4 vote down star
2

I know ASP.NET does this automatically, but for some reason I can't seem to find the method.

Help anyone? Just as the title says.

If I do a Response.Redirect("~/Default.aspx"), it works, but I don't want to redirect the site. I just want the full URL.

Can anyone help me out?

flag

6 Answers

vote up 7 vote down check

For the "/#{path}/Default.aspx" part, use:

Page.ResolveUrl("~/Default.aspx")

If you need more:

Request.Url.Scheme + "://" + Request.Url.Host + ":" + Request.Url.Port
link|flag
vote up 4 vote down

In a web control, the method is ResolveUrl("~/Default.aspx")

link|flag
vote up 4 vote down

Take a look at the VirtualPathUtility class.

link|flag
vote up 2 vote down

There are at least three ways of doing this. I asked if there was any difference, but I didn't get any answer.

  1. Control.ResolveUrl
  2. Control.ResolveClientUrl
  3. VirtualPathUtility.ToAbsolute
link|flag
1  
the difference between ResolveUrl and ResolveClientUrl is that ResolveClientUrl returns a path relative to the current page, ResolveUrl returns a path relative to the site root: andornot.com/about/developerblog/… – Aaron Hoffman Apr 22 at 16:37
vote up 0 vote down

Here's what I use:

Response.Redirect(Response.ApplyAppPathModifier("~/default.aspx"))
link|flag
is there a difference between using the Response.ApplyAppPathModifier() and Page.ResolveUrl(), in particular when dealing with MVC pages (not web forms)? – Thiago Silva Sep 22 at 16:19
oh, and I mean not for Redirect, but rather for getting URLs (e.g. setting src attributes, etc). – Thiago Silva Sep 22 at 16:20
vote up 0 vote down

Here's an article that explains the difference between the various ways to resolving paths in ASP.NET -

Different approaches for resolving URLs in ASP.NET

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.