Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Iterate Through DataSet Rows
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Title:
Iterate Through DataSet Rows
Environment versions
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01348670
Message ID:
01348670
Views:
77
I want to put a Next and Previous button on a form and allow the user to move to either the previous or next row in the data set. This will this display the contents of the row in textboxes on the form. So far I have:
private void ShowRow(int iRow)
{
	DataRow row = ds.Tables["Inventory"].Rows[iRow - 1];
	txtKey.Text = ???
where 'ds' is a dataset stored to a private member on the form.

1) Is this the way to do this?
2) How to I get the data from the row into the text box?

Thanks
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Next
Reply
Map
View

Click here to load this message in the networking platform