newbie: preparing ASP.NET application for release

  • Thread starter Thread starter Stimp
  • Start date Start date
S

Stimp

I have an ASP.NET application that I'm ready to upload onto a webserver
in a release format.

I just want to be sure of a few things first:

- I take it that I only need to upload the aspx files, the bin directory
files, stylesheets, global.asax and web.config onto the server?

(i.e. I don't need to upload the .vb source files and assemblynfo.vb,
etc?)

- Also, to prepare the application for release mode, do I just need to
set the <compilation> tag to debug="false" ?

Anything else I should know about?

Thanks,
Peter
 
debug="false" compile the code i release mode (assuming you are using
VS.Net, that's just a dropdown that says DEBUG and RELEASE). you also need
ascx (user controls), asmx (web services), asax (global)

you can remove the vbproj and sln/suo files.

karl
 
To depoly the project to the server you can use the copy project function in
the project menu (if you are using Visual Studio). Just check, copy "Only
files needed to run this application". You must have your ASP.NET project
selected in the solution explorer.

/Henke
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top