Tagged Questions

5
votes
4answers
1k views

ASP.Net: Using System.Web.UI.Control.ResolveUrl() in a shared/static function

What is the best way to use ResolveUrl() in a Shared/static function in Asp.Net? My current solution for VB.Net is: Dim x As New System.Web.UI.Control x.ResolveUrl("~/someUrl") …
3
votes
2answers
216 views

PHP: How to resolve a relative url

I need a function that given a relative URL and a base returns an absolute URL. I've searched and found many functions that do it different ways. resolve("../abc.png", "http://exa …
0
votes
1answer
18 views

Keep old URLs when implementing UrlRewriter.net

I added UrlRewriter.net to my site today and it works fine with redirecting my SEO links to actual pages. The question is if there is any way to keep my old links in site and have …
0
votes
2answers
49 views

new control().ResolveUrl(””) not working on deployed.

Hello guys, I have an application using MVC. In my controller I have their a viewdata[] which contains the image path (Viewdata["dd"]=new Control().ResolveUrl(path)). This will wo …
0
votes
1answer
54 views

Is it required to call ResolveUrl() before LoadControl() ?

Is it required to call TemplateControl.ResolveUrl() before passing it to TemplateControl.LoadControl()? Which way is preferred? LoadControl(ResolveUrl("~/MyControl.ascx")); LoadC …
0
votes
2answers
153 views

How to use absolute url in aspx page on development machine?

I find myself using the ResolveUrl function a lot in my aspx pages but the resolved path is always relative. i would like to be able to have the rendered path start with the regula …
0
votes
2answers
418 views

Best way to register js for modularity in User Control

Hello i have a control that is organized like this and i want to have the javascript registered on the calling master pages, etc, so that anywhere this control folder is droppe …