PreethaMIS
MIS
Moving of the intranet from local computer to production web server:
I am stuck with the moving and Server.MapPath issue.
In the local computer, my virtual tree looks like this:
In the production computer, the virtual tree looks like this:
This is a classic ASP application with Jscript as the Server side language. I use the File Scripting object to locate the files located in the folder. However once moved to the production webserver, I get “Path Not Found” when I try to access the folder.
To test whether I created the virtual directory right, when I response.write to the browser, I see the following path:
E:\Inetpub\
Would you know how to refer it to the E:\webapps\Legal\Docs folder?
Any suggestions what I could be missing?
Thanks.
I am stuck with the moving and Server.MapPath issue.
In the local computer, my virtual tree looks like this:
Code:
Local Computer
WebSites
IIS Local Host
LegalWeb
Docs (C:\Dev\project\_files\Docs)
_admin
_site
_ajax
_include
_includeadmin
_js
_media
_style
In the production computer, the virtual tree looks like this:
Code:
DuWeb
WebSites
IIS Local Host
Departments
LegalWeb
Docs (E:\WebApps\Legal\Docs)
_admin
_site
_ajax
_include
_includeadmin
_js
_media
_style
This is a classic ASP application with Jscript as the Server side language. I use the File Scripting object to locate the files located in the folder. However once moved to the production webserver, I get “Path Not Found” when I try to access the folder.
To test whether I created the virtual directory right, when I response.write to the browser, I see the following path:
E:\Inetpub\
Would you know how to refer it to the E:\webapps\Legal\Docs folder?
Any suggestions what I could be missing?
Thanks.