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 how do you connect to sql server database without using sqlclient?
What are the usages of the command object in ado.net?
What are the parameters that control most of connection pooling behaviours?
How to pass values into a datatable?
Compare Data Reader & Dataset in ado.net?
What is the meaning of object pooling?
What is the namespaces being used to access oracle database?
What are the disadvantages of using datalist?
How to create dynamic gridview?
what is the difference betwen typed dataset and untyped dataset?in general which dataset can we use in programming?
What is difference between sqldatareader and sqldataadapter?
What is the usage of the dataset object in ado.net?
What is data reader in ado.net?
What is the difference between Dataset. clone and Dataset.copy?
Which is faster datareader or dataadapter?