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
Define globalization and localization.
Explain the updatepanel?
How you will handle session when deploying application in more than a server?
What is x xss protection?
What is base class of .net?
How can I open ashx file in mobile?
What is inheritance and an how it be used, example with an example?
how to elimainte the similar data from the different tables
What is meant by web application?
What are the differences between application object and session object?
What is simple data binding?
How information about the user's locale can be accessed?
Tell me how asp.net mvc differs from asp.net web forms? : asp.net mvc
What is the advantage of using Windows authentication in a Web application?
Why session is necessary in web application?