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