Answer Posted / swathi
this is also same as the Dataset.
these are steps:
1. SqlConnection con=new SqlConnection(ConnectionString);
2. SqlCommand com=new SqlCommand("Select * from
TableNAme",con);
3. SqlDataReader dr;
4. con.open();
5. dr=com.ExecuteReader();
6. Datagrid1.DataSource=dr;
7. DataGrid1.DataBind();
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Describe the programming model of a windows service
Explain .net framework overview?
Why do we use msmq?
State the differences between the dispose() and finalize().
Why you want to leave your previous company.
What is il in vb.net?
What is singleton activation mode in .net?
What is .net standard?
Explain the difference between task and thread in .net?
Explain the procedure to add assemly to gac to make it shared one?
What is manifest in .net?
Explain me how does linq work?
Can you edit data in repeater control? How?
What is value type and refernce type in .net?
What is clr in .net?