Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
3k views

ASP.Net C# ResolveClientUrl inside Class

I have the following code: public class NavigationPath { private string menuItems = "<li>" + "<a href=\"#\">home</a>" + ...
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
295 views

Design mode in Visual Studio doesn't ger resources specified with ResolveClientUrl

I use ResolveClientUrl to include css files in my page. When launched through web-server everything is OK, but in design mode css styles are not applied to the page. I use VS 2010 beta 2. <link ...
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")); ...