To the database access part, I just have to say: Huh???? I don't know what wierd moon version of .NET you people are using, but in mine, it doesn't take much code at all:
Code:
//Connecting: One line
SqlConnection myConnection = new SqlConnection("The Connection String");
//getting a dataset: 3 lines
SqlDataAdapter myCommand =
new SqlDataAdapter("SELECT * FROM Guitars", myConnection);
DataSet ds = new DataSet();
myCommand.Fill(ds, "Guitars");
//Displaying the data in a table: 2 lines!!!
GuitarSelectBox.DataSource = ds.Tables["Guitars"].DefaultView;
GuitarSelectBox.DataBind();
Bookmarks