Writing to a database
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
-
Use ADO.NET. What you should do is: 1. Set up your connection string in as Connection object. 2. Instantiate an DateAdapter object using the above connection 3. Fill a dataset using the adapter. 4. Change the values in the dataset 5. Call DataAdapter.Update Read up on ADO.NET[^]. :)
"if you vote me down, I shall become more powerful than you can possibly imagine" - Michael P. Butler.