ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T13:15:30Zhttp://stackoverflow.com/feeds/question/26796http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/26796/asp-net-using-system-web-ui-control-resolveurl-in-a-shared-static-function5ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static functiontravis2008-08-25T20:31:32Z2009-02-09T13:48:50Z
<p>What is the best way to use ResolveUrl() in a Shared/static function in Asp.Net? My current solution for VB.Net is:</p>
<pre><code>Dim x As New System.Web.UI.Control
x.ResolveUrl("~/someUrl")
</code></pre>
<p>Or C#:</p>
<pre><code>System.Web.UI.Control x = new System.Web.UI.Control();
x.ResolveUrl("~/someUrl");
</code></pre>
<p>But I realize that isn't the best way of calling it.</p>
http://stackoverflow.com/questions/26796/asp-net-using-system-web-ui-control-resolveurl-in-a-shared-static-function/26807#268076Answer by Dave Ward for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static functionDave Ward2008-08-25T20:35:46Z2008-08-25T20:35:46Z<p>I use <a href="http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility.aspx" rel="nofollow">System.Web.VirtualPathUtility.ToAbsolute</a>.</p>
http://stackoverflow.com/questions/26796/asp-net-using-system-web-ui-control-resolveurl-in-a-shared-static-function/26812#268121Answer by Keith for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static functionKeith2008-08-25T20:37:09Z2008-08-25T20:37:09Z<p>I tend to use HttpContext.Current to get the page, then run any page/web control methods off that.</p>
http://stackoverflow.com/questions/26796/asp-net-using-system-web-ui-control-resolveurl-in-a-shared-static-function/26887#268870Answer by travis for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static functiontravis2008-08-25T21:03:30Z2008-08-25T21:03:30Z<p>@<a href="#26807" rel="nofollow">Dave Ward</a> <code>VirtualPathUtility.ToAbsolute()</code> works great, thanks!</p>
http://stackoverflow.com/questions/26796/asp-net-using-system-web-ui-control-resolveurl-in-a-shared-static-function/528198#5281983Answer by jdw for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static functionjdw2009-02-09T13:48:50Z2009-02-09T13:48:50Z<p>It's worth noting that although System.Web.VirtualPathUtility.ToAbsolute is very useful here, it is <strong>not</strong> a perfect replacement for Control.ResolveUrl.</p>
<p>There is at least one significant difference: Control.ResolveUrl handles Query Strings very nicely, but they cause VirtualPathUtility to throw an HttpException. This can be absolutely mystifying the first time it happens, especially if you're used to the way that Control.ResolveUrl works.</p>
<p>If you know the exact structure of the Query String you want to use, this is easy enough to work around, viz:</p>
<pre><code>public static string GetUrl(int id)
{
string path = VirtualPathUtility.ToAbsolute("~/SomePage.aspx");
return string.Format("{0}?id={1}", path, id);
}
</code></pre>
<p>...but if the Query String is getting passed in from an unknown source then you're going to need to parse it out somehow. (Before you get too deep into that, note that System.Uri might be able to do it for you).</p>