Link to home
Create AccountLog in
Avatar of gtrapp
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.
Avatar of Rob Siklos
Rob Siklos
Flag of Canada image

You should "Publish" the web site, and deploy all the files in the output directory.
Avatar of gtrapp
gtrapp

ASKER

Where is the output directory? Do I really publish the .cs files?
Avatar of Aaron Jabamani
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.
Avatar of gtrapp

ASKER

I have VS 2003. Is this publish option available with this version?
ASKER CERTIFIED SOLUTION
Avatar of Aaron Jabamani
Aaron Jabamani
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of gtrapp

ASKER

Thanks!