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 / sumit pardeshi
if(RadioButton1.checked == true)
{
string str="Male";
}
sqlCommand cmd=new sqlcommand("Insert into tablename
values("'+str+'")",con);
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Explain the two fundamental objects in ado.net?
Which database is the ado.net sql connection object designed for?
What are the Features of a dataset
Explain how to copy the contents from one table to another table and how to delete the source table in ado.net?
Which namespaces are used for data access?
How to work with disconnected data - the dataset and sqldataadapter?
How many major types of connection objects in ADO.NET?
What is difference between executenonquery and executequery?
What is ado connection?
How to aggregating data across related tables?
Explain what are acid properties?
What is the difference in record set and dataset?
What are the usages of the command object in ado.net?
How do you implement locking concept for dataset?
What is the default provider in ado.net?