Reply Please
I am taking radiobutton, checkbox and dropdownlist field in a design page , how to write the same in a databse while creating a table for the same , please help me with the help of some example
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Sep 13, 2013, 7:55 AM
Nimit JoshiPosted Sep 13, 2013, 7:15 AM
If you want to design the table on sql server 2008 then follow this:
create table Table_Name
(
ID int primary key identity(1,1),
Gender char(10) not null,
IsMarried char(5) not null,
Marital Status varchar(15) not null
)
Press F5 to execute
Insert into Table_Name values('Male', 'No', 'Unmarried')
Sanjeeb LenkaPosted Sep 13, 2013, 1:06 AM
try this
Make RegId as primary key and set it as Indentity column
Rushal AroraPosted Sep 13, 2013, 12:53 AM
Male
Married : Yes
Martial Status : DropdownList
Now i want to create a table in which i want to mention the above fields using SQL Server 2008 , how to do it ?
Kiran Kumar TalikotiPosted Sep 13, 2013, 12:36 AM
Nimit JoshiPosted Sep 12, 2013, 11:09 AM