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 / vinay kumar v
If(Radiobutton.checked == true)
{
string str1 = "Male";
}
insert into #t value(str1);
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What is the full form of ado?
Explain the architecture of ado.net?
What is the meaning of object pooling?
How can we add/remove row's in "datatable" object of "dataset"?
What is dataadapter in ado.net?
What is the significance of CommandBehavior.CloseConnection ?
What is ado recordset?
oledbdataadpter with ms access in c#.net giving exception System.Data.OleDb.OleDbException while writing adapter.update(dataset,"tabname"); how to update the database from dataset?
What is Dataset Object?
Why is ADO.NET serialization slower than ADO ?
What are the pre-requisites for connection pooling?
What is csdl entity framework?
What is ado full form?
How to find the given query is optimised one or not?
What are the usages of the command object in ado.net?