I want to ask u that if i add radio button in ado.net
form,and how radion button data insert in SQL2005 Database...
Answer Posted / preethi
String radiovalue;
radiovalue=radiobuttonid.selecteditem.Text;
and pass that string to database
| Is This Answer Correct ? | 11 Yes | 9 No |
Post New Answer View All Answers
What is DataRowCollection?
What are the advantages using ado.net?
What two types of data providers does ADO.NET supply? What determines which one you should use?
What is the purpose of using adodb?
What is meant by ‘transaction’ in a database and what are the ‘properties of transaction’?
Explain the differences between oledb sql server, oledbdotnet provider?
How do you find the count of records in a dataset?
If a table contains 20000 records . In a page at each time 100 records to be displayed what are the steps you will take to improve performance? Will you use dataset or datareader?
Why do we serialize data?
What are the different methods by which we can populate a dataset?
Which ado.net object is very fast in getting data from the database?
What is a datagridview?
What are the Data providers in ADO.Net?
What is the difference between executequery and executenonquery?
How can I retrieve two tables of data at a time by using data reader? Data reader read and forward only, how is it possible to get 2 tables of data at a time?