Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
6k 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") Or C#: ...
7
votes
3answers
3k 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", ...
3
votes
2answers
1k views

ResolveUrl without an ASP.NET Page

I am looking for a way to resolve a relative url the way you would with a page or control instance (MSDN Docs) such as: Page.ResolveUrl("~/common/Error.aspx"); ...but when I only have an ...
2
votes
2answers
705 views

hyperlink.NavigateUrl getting changed on master page (possibly by ResolveUrl() )

I have a hyperlink that in certain cases I want to change to show a jquery popup, but I'm having a strange problem when doing it on a master page. The following works in a regular page: ...
2
votes
2answers
377 views

ResolveUrl in Static WebMethod

How do you resolve a url like "../../images/test.png" to "http://yoursite.com/images/test.png" in a static asp.net web method?
1
vote
1answer
1k views

ASP.NET: How to get the virtual path of a file from a generic handler?

How can i resolve a virtual path to a file into a path, suitable for the browser, from within a generic .ashx handler? e.g. i want to convert: ~/asp/ClockState.aspx into ...
1
vote
2answers
195 views

Is it possible to override ResolveUrl?

I use the following my .net applications to resolve the path to an image or css file or javascript file. <%=ResolveUrl("~/Scripts/myscript.js")%> <%=ResolveUrl("~/images/myimage.jpg")%> ...
1
vote
2answers
3k views

ResolveUrl Problem in Master Page

Okay, I know it is weird but when I put this code between <head runat="server"></head> in master.page, this is how it renders into: <link id="ctl00_Link1" rel="shortcut icon" ...
1
vote
3answers
2k views

Absolute file path to relative URL - c#

I've seen lots of tutorials on resolving a relative url to an absolute path, but i want to do the opposite: resolve an system absolute filepath into a relative url. Is there a nice hack-free way to ...
0
votes
3answers
124 views

Resolve URL Redirect

I have set up a URL redirect on http://freedns.afraid.org/ so I can change host to a file that my application downloads, without the need of changing the code in my app. The problem is that I need to ...
0
votes
1answer
93 views

Equivalent of asp.net's ResolveUrl in php

In my apache www dir, I have subdirectory for different personal projects I work on. Ex: www/webApp1 www/webApp2 I access to webApp2 by http://localhost:81/webApp2 (I currently run a portable wamp, ...
0
votes
0answers
24 views

Set up custom URL resolver on my local network

My college has this neat page where if you're on the local wireless or ethernet, you can go to http://stat/ and get a page telling you which computers are available, etc. What's this called and how ...
0
votes
2answers
489 views

Android: Using resolved IP Address instead of hostname

I would want to use resolved IP address to connect to server instead of hostname. Here is my code snippets: // Get domain name from URL String domainName = url.substring("http://".length(), ...
0
votes
2answers
801 views

Apache local configuration to resolve files correctly

I am new at this so bare with me. I have just configured Apache and PHP to work on my local Mac OS X computer. Now PHP works fine, except when I try to load the files for my live sites. The live sites ...
0
votes
5answers
758 views

How can I resolve ASP.NET “~” app paths to the website root without a Control being present?

I want to Resolve "~/whatever" from inside non-Page contexts such as Global.asax (HttpApplication), HttpModule, HttpHandler, etc. but can only find such Resolution methods specific to Controls (and ...
0
votes
3answers
130 views

How to best normalize URLs

I'm creating a site that allows users to add Keyword --> URL links. I want multiple users to be able to link to the same url (exactly the same, same object instance). So if user 1 types in ...
0
votes
1answer
122 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 ResolveUrl() using ...
0
votes
2answers
363 views

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

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 work on my local but on the deploy ...
0
votes
1answer
196 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")); ...
0
votes
2answers
443 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 regular ...
0
votes
2answers
956 views

Best way to register js for modularity in User Control

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 dropped and then registered, it ...