Explain how to bind the controls(best practice) comboboxes to the data in the dataset?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More ADO.NET Interview Questions

What are the ado.net connection pooling parameters?

0 Answers  


What are the three Objects of ADO.

10 Answers  


What is the key feature of ADO.NET compared to ADO ?

3 Answers   TCS,


Define data access layer?

0 Answers  


Name which operations can you not perform on an ado.net dataset?

0 Answers  






Which is the feature of ado.net?

0 Answers  


What is ado.net and its architecture?

0 Answers  


What are the different namespaces used in the project to connect the database?

3 Answers  


What is serialization and de-serialization in .net? How can we serialize the dataset object?

0 Answers  


How To Update A Column In A DataGrid Using C#.NET? I am getting InvalidCastException as (Specified cast is not valid) while updating 2nd column in a datagrid? Id,firstname,lastname are the three columns of my datagrid respectively. I wanted to edit the second column(lastname) and update it. I did the following code in DataGrid's updatecommand(),but failed to update ! Int varid=(int)DataGrid1.DataKeys[e.Item.ItemIndex]; TextBox lnm=(TextBox)e.Item.Cells[2].Controls[0]; string str=lnm.Text ; SqlCommand cmd=new SqlCommand("update customer set lastname='" + str + "' where id=" + varid + "",con); cmd.ExecuteNonQuery(); DataGrid1.EditItemIndex=- 1; DataGrid1.DataBind();

2 Answers   Mind Tree, TCS,


What is meant by ‘transaction’ in a database and what are the ‘properties of transaction’?

0 Answers  


What is datacolumn and how it is used?

2 Answers  


Categories