How to synchronize between devlopment and production servers while developing an asp.net web applica

  • Thread starter Thread starter Sandeep
  • Start date Start date
S

Sandeep

Hi all,

I need to figure out a way to synchronize between my production server
web site (asp.net web application) and development server web site. If
there are any changes in the development server web application I
don't want to xcopy the entire directory. Is there any way by which I
could upload only changed files (.aspx, .dll, images ) etc. ?

Thanks in advance

Sandeep
 
You might consider using robocopy. It comes in the Windows Resource Kit and
has the capability of checking whether a file is actually different before
it performs a copy.
 
use XCOPY with the /d parameter.

/d says don't copy it unless the date is greater on the source file than the
target file. In other words, unless it has changed.

-TPS
 
Back
Top