Page.MapPath Method
.NET Framework 3.0
Retrieves the physical path that a virtual path, either absolute or relative, or an application-relative path maps to.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public String MapPath ( String virtualPath )
public function MapPath ( virtualPath : String ) : String
Not applicable.
Parameters
- virtualPath
A String that represents the virtual path.
Return Value
The physical path associated with the virtual path or application-relative path.The following example uses the MapPath method to obtain the physical path of a subfolder. It then appends the file name that is read from the Text property of a TextBox control. The result is the absolute physical path to that file.
String fileNameString = this.MapPath(subFolder.Text);
fileNameString += "\\" + fileNameTextBox.Text;
String fileNameString = this.MapPath(subFolder.get_Text()); fileNameString += "\\" + fileNameTextBox.get_Text();
Community Additions
ADD
Show:
Caution: