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
Explain the various objects in dataset.
Explain ado.net features? Benefits? Drawbacks?
What is ado and dao?
What is ado full form?
What is dao and ado?
What does adodb stand for?
What do you know about ado.net's objects?
How to Read, Add, Update and Delete record in Entity Framework ?
What is difference between sqldatareader and sqldataadapter?
Explain what are the steps to connect to a database?
Which one of the objects is a high-level abstraction of the connection and command objects in ado.net?
What is the difference between Command and CommandBuilder object?
Data reader read and forward only, how is it possible to get 2 tables of data at a time?
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?
What is isolation?