Newbie deployment question

cpopham

Junior Contributor
Joined
Feb 18, 2004
Messages
273
I am learning ASP and have a test region on our Web server. On my computer my ASP page comes up fine, not I am ready to put it out in the test region of the web server.

My question is, what files do I need to upload to the web server and are they all at my www.root directory on my local machine?

Chester
 
The server will need the .NET Framework installed, for starters. Assuming that that is in place, a simply xcopy of all the file in your application's directory should be more than sufficient, unless of course you have a Microsoft SQL Server database or similar RDMS to set up.
 
You will need to copy the bin directory, and any other directories or files in the bin directory's parent directory. The bin directory's parent directory is known as the "application root".
 
Back
Top