UserControl.MapPath Method
.NET Framework 2.0
Assigns a virtual file path, either absolute or relative, to a physical file path.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
While similar to the Page.MapPath method, this method maps the path from the .ascx file's location, not the .aspx file's location. You can use this method to obtain a path to a directory of images or other resources associated with your UserControl object.
The following example calls the MapPath method to associate an actualServerPath variable with the physical path associated with the user control named myControl.
myControl.get_Response().Write("<br /><b>The server code is"
+ "running on machine</b> : "
+ myControl.get_Server().get_MachineName());
String actualServerPath =
myControl.MapPath(myControl.get_Request().get_Path());
Community Additions
ADD
Show: