public class foo : System.Web.UI.Control
{
    public foo()
    {
      var a = new HyperLink(){ Text="Test", NavigateUrl="~/abc.aspx"};
      this.Controls.Add(a);
    }
}

The above code works properly, and when added to a page will successfully identify the tilde / ~ symbol and convert the url into a relative url.

However, when I change the derivation of the class to System.Web.UI.WebControl it does absolutely nothing, and leaves the tilde / ~ intact.

I had a look at System.Web.UI.Control which implements the IUrlResolutionService interface, but still can't seem to get System.Web.UI.WebControl to resolve urls.

link|improve this question

74% accept rate
feedback

2 Answers

You can try the System.Web.VirtualPathUtility class:

public foo()
{
  var a = new HyperLink()
      { 
          Text="Test", 
          NavigateUrl=VirtualPathUtility.ToAbsolute("~/abc.aspx")
      };
  this.Controls.Add(a);
}
link|improve this answer
I would like the class to resolve the urls and also learn why they dont. – maxp Feb 4 '11 at 9:33
not sure but may be WebControl doesn't support this relative mapping...i'll check it out – Shekhar_Pro Feb 4 '11 at 12:57
feedback

I usually do this to get root and them map my path:

HostingEnvironment.ApplicationVirtualPath() + "/mypath/mypage.aspx"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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