I have a large table which has an ID column and contains request/ticket info.
On a win form , I want to let user enter his request ID and get all the request info in a new form.
The place where I am facing a problem is how to loop through the values of only one column.
Here is what I have seen elsewhere and have tried to implement[my datatable name is st]:
DataTable dt = new DataTable("dbo.table_submission");
DataRow[] foundRows = dt.Select("ID =" + i);
if (foundRows != null )
{
Status status = new Status();
status.Show();
}