13 references to ApplyAppPathModifier
System.Web (7)
Abstractions\HttpResponseWrapper.cs (1)
313return _httpResponse.ApplyAppPathModifier(virtualPath);
HttpResponse.cs (1)
2392url = ApplyAppPathModifier(url);
UI\Control.cs (1)
3006return Context.Response.ApplyAppPathModifier(url);
UI\HtmlForm.cs (1)
305action = Context.Response.ApplyAppPathModifier(action);
UI\PageAdapter.cs (1)
216url = Page.Response.ApplyAppPathModifier(Page.Request.CurrentExecutionFilePath);
UI\WebControls\SiteMapPath.cs (1)
599Context.Response.ApplyAppPathModifier(ResolveClientUrl(HttpUtility.UrlPathEncode(node.Url))) : node.Url;
XmlSiteMapProvider.cs (1)
962resultNode.Url = context.Response.ApplyAppPathModifier(node.Url);
System.Web.Extensions (1)
HttpResponseInternalWrapper.cs (1)
265return _httpResponse.ApplyAppPathModifier(virtualPath);
System.Web.Mobile (5)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicControlAdapter.cs (2)
180target = Page.Response.ApplyAppPathModifier(Control.TemplateSourceDirectory); 199String prefix = writer.EncodeUrlInternal(Page.Response.ApplyAppPathModifier(Page.TemplateSourceDirectory));
UI\MobileControls\MobileControl.cs (1)
393return Context.Response.ApplyAppPathModifier(url);
UI\MobileControls\MobilePage.cs (2)
459path = Response.ApplyAppPathModifier(path); 532_absoluteFilePath = Response.ApplyAppPathModifier(Context.Request.CurrentExecutionFilePath);