Upgrading asp.net production web pages

  • Thread starter Thread starter FS
  • Start date Start date
F

FS

After making changes to a single .aspx file and its associated
..aspx.cs codebehind file in a development environment, is it possible
to copy just those files to the production environment(with or without
the project .dll)? or must you copy ALL the web files in a project and
the .dll?

The latter makes quick fixes to a production web site a nightmare.

Thanks in advance.
 
The code behind is compiled into the dll, so you have to build the dll and
copy it as well.
 
Simply copy the dll to the bin directory, and any .aspx pages that you have
changed. You don't need to copy the codebehind files these are compiled
into the dll.
 
Back
Top