-1

we are developing some ASP.NET project, in that we work on same file. so we find difficulty to merger after the modifications. can you please give me a solution for this in detail.

thanks in advance.

  • This is exactly what Source control systems are for. Maybe look into using Team Foundation server or Subversion. – Fishcake Feb 01 '11 at 11:57
  • move the logic from the aspx file to services and/or business object. – Steve B Feb 01 '11 at 12:01
  • 2
    @Jakub: Why not? He's having difficulty merging the work of several developers, and he's asking for help or suggestions. – tdammers Feb 01 '11 at 12:02
  • @user change the [version-control] tag to whatever version control system you are actually using (unless you aren't). –  Feb 01 '11 at 13:51

3 Answers3

1

Use a Source Version Control system

abatishchev
  • 98,240
  • 88
  • 296
  • 433
0

When working with many members on the same Project, there are Tools like Team Foundation Server, Source Safe, Subversion etc.

Check Wikipedia for a overview http://en.wikipedia.org/wiki/Revision_control

And as you work with ASP.NET i would focus on a Microsoft Product like Team Foundation Server or Source Safe as the integrate well with Visual Studio.

gsharp
  • 27,557
  • 22
  • 88
  • 134
0

You probably need some sort of Source Control system. Visual Studio doesn't provide one out-of-the-box, but there are plenty of free solutions. The most popular ones at the moment are subversion, git, and mercurial; from what you tell us, I would assume git or mercurial would be the best fit, since they do not require a server.

tdammers
  • 20,353
  • 1
  • 39
  • 56