ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:15:30Z http://stackoverflow.com/feeds/question/26796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/26796/asp-net-using-system-web-ui-control-resolveurl-in-a-shared-static-function 5 ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function travis 2008-08-25T20:31:32Z 2009-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#26807 6 Answer by Dave Ward for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function Dave Ward 2008-08-25T20:35:46Z 2008-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#26812 1 Answer by Keith for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function Keith 2008-08-25T20:37:09Z 2008-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#26887 0 Answer by travis for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function travis 2008-08-25T21:03:30Z 2008-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#528198 3 Answer by jdw for ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function jdw 2009-02-09T13:48:50Z 2009-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>