Author: lorengphd1 | Posted on: 9/16/2009 5:09:39 PM | Views : 621

Hey folks,
I am sort of a novice with ASP.NET.  I have a website built that keeps track of sports teams (Rosters) and the players that play on them at certain "tournaments".  Basically I want to add a feature that takes these "Rosters" and pairs them with other "rosters" to create a "game" that I can then document and display the score of.
The best way I can think to do this is load all of the rosters (lets say 10) from the database into some sort of list, and then do a for each loops with a SQL statement that matches each "roster" with another and ads a new field into a "games" table in my database.  From there I can list all the games (this would be a schedule) and I can display that online and later add scores.
One problem that I  see with this method is the order of games.  There is a certain order that I don't decide and I am not sure how I would change the order.  Fo ...

Go to the complete details ...