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.
John Oakes - 16 Feb 2004 18:34 GMT
The code behind is compiled into the dll, so you have to build the dll and
copy it as well.
> After making changes to a single .aspx file and its associated
> .aspx.cs codebehind file in a development environment, is it possible
[quoted text clipped - 5 lines]
>
> Thanks in advance.
matt - 16 Feb 2004 19:36 GMT
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.
> After making changes to a single .aspx file and its associated
> .aspx.cs codebehind file in a development environment, is it possible
[quoted text clipped - 5 lines]
>
> Thanks in advance.