11 references to CurrentExecutionFilePath
System.Web (7)
Abstractions\HttpRequestWrapper.cs (1)
133return _httpRequest.CurrentExecutionFilePath;
HttpRequest.cs (1)
1595return UrlPath.MakeVirtualPathAppRelative(CurrentExecutionFilePath);
UI\Page.cs (2)
2428string path = EncryptString(Request.CurrentExecutionFilePath, Purpose.WebForms_Page_PreviousPageID); 6274String s = Context.Request.CurrentExecutionFilePath;
UI\PageAdapter.cs (2)
216url = Page.Response.ApplyAppPathModifier(Page.Request.CurrentExecutionFilePath); 251writer.Write("=" + Page.EncryptString(Page.Request.CurrentExecutionFilePath, Purpose.WebForms_Page_PreviousPageID));
UI\WebParts\WebPartPersonalization.cs (1)
663string path = request.CurrentExecutionFilePath;
System.Web.DataVisualization (1)
WebForm\General\ChartHttpHandler.cs (1)
363String appDir = Path.GetDirectoryName(HttpContext.Current.Request.CurrentExecutionFilePath ?? "").Replace("\\","/");
System.Web.Mobile (3)
UI\MobileControls\MobilePage.cs (3)
458String path = Request.CurrentExecutionFilePath; 497String s = Context.Request.CurrentExecutionFilePath; 532_absoluteFilePath = Response.ApplyAppPathModifier(Context.Request.CurrentExecutionFilePath);