What does Server.MapPath do?

Answers were Sorted based on User's Feedback



What does Server.MapPath do?..

Answer / sowmya

Maps a virtual or relative path to a physical path.

Syntax:
x = Server.MapPath( string )

Parameters:
string - string containing the path to be translated

The method returns new string containing the physical path
corresponding to the path (virtual or relative) in the
passed parameter.

Example:
JScript/VBScript:

<%= Server.MapPath("/databases/database1.mdb") %>

Is This Answer Correct ?    4 Yes 2 No

What does Server.MapPath do?..

Answer / kishore maddineni

The MapPath method maps a relative or virtual path to a
physical path. This method does not check for the validity
or the existence of the physical path. If the path starts
with a forward or backward slash, the method returns the
path as if the path is a full virtual path. If the path
does not start with a slash, then the method returns the
path relative to the directory of the ASP file being
processed

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More ASP Interview Questions

Define querystring collection?

0 Answers  


What is asp give its application?

0 Answers  


Can be arrays resized by using the keyword redim?

0 Answers  


What is asp used for?

0 Answers  


The FileSystemObject provides an object interface to drives, directories, and files for which of the following? A. Any local or mapped drive on either the server or the client. B. Only files and subdirectories in the web site's home directory. C. Any local physical drive or mapped drive on the web server. D. Any file system physically located on the web server. E. The client's computer.

1 Answers  


what are the two main compononet in remoting

0 Answers   DCI,


Explain the differences between asp and asp.net and is asp.net backward compatible to asp?

0 Answers  


How to refresh an asp page on a single click of a button?

0 Answers  


What opens asp files?

0 Answers  


Whats the implicit name and type of the parameter that gets passed into the class set method?

0 Answers  


Define a "virtual directory"?

0 Answers  


Define request object?

0 Answers  


Categories