Page.MapPath Method
.NET Framework 2.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)
'Declaration Public Function MapPath ( _ virtualPath As String _ ) As String 'Usage Dim instance As Page Dim virtualPath As String Dim returnValue As String returnValue = instance.MapPath(virtualPath)
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 uses this information to set the Text property of a TextBox Web server control.
Dim fileNameString As String = Me.MapPath(subFolder.Text) fileNameString += "\\" + fileNameTextBox.Text
String fileNameString = this.MapPath(subFolder.get_Text()); fileNameString += "\\" + fileNameTextBox.get_Text();
Community Additions
ADD
Show:
Caution: