gtrapp
asked on
What files to deploy on the production web site?
Hello,
What file types should I deploy to my production Internet web site? Should I deploy these
.aspx.designer.cs
.aspx.resx
Seems like I don't need them.
Files that I do need are .dlls, ASPX, web config. global.asax, htm, css, and js files.
What file types should I deploy to my production Internet web site? Should I deploy these
.aspx.designer.cs
.aspx.resx
Seems like I don't need them.
Files that I do need are .dlls, ASPX, web config. global.asax, htm, css, and js files.
You should "Publish" the web site, and deploy all the files in the output directory.
ASKER
Where is the output directory? Do I really publish the .cs files?
The Publish action will take care of what files to be copied. Right click on the project and select "Publish". The output directory is the Location where you want the files to be copied which is nothing but your virtual directory path.
In .net 2.0 we need the .cs file if we any files uner App_Code, Folder. Just leave the job to Publish to copy your files.
In .net 2.0 we need the .cs file if we any files uner App_Code, Folder. Just leave the job to Publish to copy your files.
ASKER
I have VS 2003. Is this publish option available with this version?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thanks!