Tagged Questions
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")%>
...
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
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 ...