I want to ask u that if i add radio button in ado.net
form,and how radion button data insert in SQL2005 Database...
Answers were Sorted based on User's Feedback
Answer / vinay kumar v
If(Radiobutton.checked == true)
{
string str1 = "Male";
}
insert into #t value(str1);
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / 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 |
Answer / vasu
Using Dataset first create data row then
dr[index]=radiobuttonid.selecteditem;
Is This Answer Correct ? | 14 Yes | 7 No |
Answer / preethi
String radiovalue;
radiovalue=radiobuttonid.selecteditem.Text;
and pass that string to database
Is This Answer Correct ? | 11 Yes | 9 No |
Answer / lalitkumar
if value is integer
sqlcommand cmd=new sqlcommand("insert into tablename
values("+convert.toint32(radiobutton1.selecteditem.text)+"",con);
Is This Answer Correct ? | 6 Yes | 5 No |
What are the advantages and disadvantages of using datalist?
What is ambient transaction?
What are the main differences between classic ado and ado.net?
What is the difference between Datareader and Dataset?
What is the difference between Dataset. clone and Dataset.copy?
What are the several execute methods of ado.net?
What is the maximum pool size in ado.net connection string?
What are the advantages of using datalist?
Why is it important to close an ado.net application?
Explain the difference between data reader and data set?
The answers which posted above is not satisfied my requirement? Can some one post teh exact answer? Thanx
Explain the advantage of ADO.Net?