How to retrieve data row by row from a DataTable?
Thanks In advance
PriyaPP
Answer Posted / digvijay
In C#
foreach(DataRow dr in dt.rows) //dt is Data table
{
string ABC= dr["Coloumn_Name"].Tostring;
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Describe the application event handlers in ASP.NET?
How can we identify that the Page is Post Back?
What is the parent class of all the web server control?
What is sdlc process?
What is windows active directory authentication?
How do session tokens work?
Is asp.net a programming language or framework?
What is is post back property in asp net?
How to add DateTime Control in normal DataGrid Server Control?
What is sql data source control in asp.net?
What are the namespace classes used in asp.net mvc? : asp.net mvc
What is page request in asp.net?
What is the usage of DelegatingHandler?
How do http sessions work?
if i want to give an alert message like "try after sometime" to a web page which is being seen by other person.if a web page is not seen by anyone then it should display otherwise it show a display a message stating that other person is viewing so try after some time........how can i implement this.