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 ...
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
123 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 ...