Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ashy_16in
Starting Member
16 Posts |
Posted - 2005-12-09 : 07:38:46
|
We are in the process of developing a web application in asp.net with multiple web forms. We are a 3 member team. Each member will be developing a few web forms. I would like to know the best approachto developing and maintaining this web application in a team environment. Any help in this regard would be appreciated. |
|
jhermiz
3564 Posts |
Posted - 2005-12-09 : 11:52:27
|
Use some sort of source control like the one that comes with visual studio.net. You can program as a team in one of two ways, if you guys will all be working completly on different forms and then combining them I would then work locally on my machine. Once I am done I would upload the results to a central network share. After everyone is done create a solution (and gather all the projects together) and combine all projects into that .sln file.Otherwise the other way you could do it is create a network share for all 3 of you something like \\Server\developmentplaceand place the solution there. Anyways when you create a asp.net / vb.net web application it is going to ask you for the http:// path to where you want the solution. IN this case specify where the web app will sit. Then you can all develop on the network folder no need to combine at a later time, but in this case you better use source safe and be careful who is working on what. Otherwise you may overwrite someone else's work.Jon Keeping the web experience alive -- [url]http://www.web-impulse.com[/url] |
 |
|
|
|
|