The resolveurl tag has no wiki summary.
0
votes
0answers
31 views
“Symbolic” link to resolve requests to a folder outside public_html?
I have a lot of image and pdf files in a folder within the public_html directory, and I have a lot of scripts on public_html dynamically processing, creating and editing these files based on user ...
0
votes
3answers
141 views
Path not able to access css or js file on root in asp.net
I am not able to get the correct path of CSS or JS file when i try to access them from sub folder en/Default.aspx file.
I have following folder structure
Default.aspx
en/Default.aspx
...
5
votes
1answer
338 views
Delphi XE2 - How to get IP of a specified website?
I have a program in which checks a php file on a web server to see if the user is verified. The php files runs through the DB and checks and echos "verified" if they are.
Now, people are now easily ...
1
vote
0answers
28 views
Does anyone know of a front-end method that resolves urls similar to ASP.NET MVC Url.Action()
What I am looking for is a lightweight front-end framework that can take partials, such as a footer navigation, and resolve urls correctly from any location in the file system.
For example, I have ...
1
vote
2answers
101 views
ResolveUrl prepending random string to actual url
I am using resolveUrl to call a virtual directory specified in my web config. Recently my error log gave me a issue to where it prepened a long string to this path. So to be clear it resolved the ...
0
votes
0answers
150 views
jQuery / javascript resolve virtual address to URL
I am trying to load a partial view based on the current selected value in a dropdown list.
My code works when I hard code the url...
$(document).ready(function () {
...
2
votes
1answer
490 views
Override ASP.NET tilde (~) resolution just for images
I have a large legacy application, and I would like to move all of our images to a CDN.
Currently, all of our images reside under the application root itself, so the paths are all like ...
0
votes
3answers
589 views
How to give path for image in a master page for two sub-pages in two locations?
Hi all my work environment is asp.net c# vs2008. My issue is this, i have a master page outside.master in shared folder.Inside it i have an image control with
<img ...
0
votes
2answers
788 views
Using ResolveUrl on HTML button in MasterPage
I have the following HTML in my MasterPage:
<input class="button" type="button" value="Select User" onclick='<%# string.Format(@"location.href={0}", ResolveUrl("~/SelectUser.aspx")) %>' ...
0
votes
3answers
606 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 ...
2
votes
2answers
425 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
2answers
3k 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(),
...
4
votes
1answer
6k 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
...
2
votes
2answers
2k 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:
...
13
votes
2answers
12k 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 ...
1
vote
2answers
339 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")%>
...
3
votes
2answers
1k 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?
0
votes
2answers
4k 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 ...
5
votes
6answers
6k 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 ...
1
vote
2answers
8k 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" ...
4
votes
3answers
5k 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
318 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
158 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
465 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
264 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"));
...
10
votes
4answers
8k 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", ...
0
votes
2answers
784 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
1k 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 ...
20
votes
3answers
11k 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#:
...
