Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP.NET 2.0 Displey dataset in textbox and update dataset from textbox

Status
Not open for further replies.

joggi

Programmer
Nov 8, 2006
44
YU
In my old VB project I have this procedure to work with database:

1. I get recordset from database
2. I displey recordset values in textboxes
3. I update values in textboxes
4. I asign that values to recordset
5. I update Recordset to database

In ASP.NET 2.0 tutorials I don't see this kind of work. They use Gridview, Repeater control etc.
Would it be bad if I continue to work on "My old way" ? Can somebody give me advice?

Thanks in advance

 
The textbox control in 2.0 is not bindable as it was in previous versions, why? I have no idea. What you have to do is get your dataset, and find the value you want to set the textbox to manually.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top