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