|
|
|
The Server.MapPath method slightly shows down the execution of your ASP scripts, because IIS has to access some internal variables. For this reason you should try to avoid it if possible. In other words, you should code absolute physical paths in your ASP code, instead of using virtual paths that you then have to convert to a physical path using Server.MapPath.
For example, instead of the following code: |
Click here to copy the following block | Dim fso, ts Set fso = Server.CreateObject("Scripting.FileSystemObject") Set ts = fso.OpenTextStream( Server.MapPath("/textfile.txt") ) ...
you should use: Dim fso, ts Set fso = Server.CreateObject("Scripting.FileSystemObject") Set ts = fso.OpenTextStream( "c:\InetPub\wwwroot\textfile.txt" ) ... |
The problem, of course, is that using physical paths makes it difficult to move your site to another machine, such as when you move your local web site to the production server. A simple workaround, that avoids the overhead of using MapPath but keeps most of its flexibility, is to store the application's root path into an Application variable, and then use it to build absolute paths. For example, you might set this variable in Global.asa: |
Click here to copy the following block | ' in any other ASP file Dim fso, ts Set fso = Server.CreateObject("Scripting.FileSystemObject") Set ts = fso.OpenTextStream( Application("RootDir") & "\textfile.txt" ) |
Using this approach, you'll have to modify only global.asa when moving to another physical location. Even better, you can retrieve the site's root directory dynamically, so that you don't even have to modify global.asa: |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|