Tagged Questions
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#:
...
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
748 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
406 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
206 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" ...
0
votes
1answer
198 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
456 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 ...