How to retrieve data row by row from a DataTable?
Thanks In advance
PriyaPP
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / suyash deep
best way to retrieve data is-
//dtTable is Data table
//dtrow id Data Row object
string str;
foreach(DataRow dtrow in dtTable.rows)
{
str= dtrow ["emp_Name"].Tostring();
//emp_Name is the column name
// now use str variable as you want to manipulate.
}
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / 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 |
What are the various authentication mechanisms in ASP.NET ?
1 Answers Digital GlobalSoft, Satyam,
Why is xap important?
What are Authentication and Authorization?
Explain how viewstate is being formed?
What is the function of new view engine in asp.net? : asp.net mvc
How is the asp.net mvc architecture different from others? : asp.net mvc
what is shared assembly asp net
Can we change the page layout in ASP.NET 2.0 as Grid Layout like in previous version
Define the steps to set up validation control.
What is caching? Explain.
List the advantages and disadvantages of user control an custom control?
How to create discussion forum in asp.net mvc? : Asp.Net MVC