How to retrieve data row by row from a DataTable?
Thanks In advance
PriyaPP
Answer Posted / guest
foreach(Datarow dr in table.rows)
{
string str = dr[0].ToString();
string str1 = dr["columnName"].ToString();
}
Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
What is difference between view state and session state?
Differentiate strong typing and weak typing
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
How many types of validators are there in asp net?
Which is faster viewbag or viewdata?
What is a viewstate?
what are the security certificates used in webservices?
How about the security in Activex DLL and Activex EXE ?
List the advantages and disadvantages of user control an custom control?
What are the 3 levels at which content pages can be attached to Master Page?
What is the file through which you can customize your asp.net application?
How can we create Tree control in asp.net?
Why does my asp.net file have multiple tag with runat=server?
What is advantage of asp.net?
What is cross page posting? How is it done?