How to get radio button values in sql 2000
-
Hello all am creating simple application in vb.net 2005 sql server 2000 as my back end, My problem is for gender identification am creating Radio buttons in the Frontend. How do I Specify data type (varchar/ navarchar/float) for that Radio buttons? How i store its value in the back End? Please help me:(
-
Hello all am creating simple application in vb.net 2005 sql server 2000 as my back end, My problem is for gender identification am creating Radio buttons in the Frontend. How do I Specify data type (varchar/ navarchar/float) for that Radio buttons? How i store its value in the back End? Please help me:(
Hi In my point of view, you can store the values as varchar. If it is male then store in table like M. When fetching the data, check if that is M.
Cheers Navaneeth!!
-
Hello all am creating simple application in vb.net 2005 sql server 2000 as my back end, My problem is for gender identification am creating Radio buttons in the Frontend. How do I Specify data type (varchar/ navarchar/float) for that Radio buttons? How i store its value in the back End? Please help me:(
Hello, You can use bit data type if your gender is limited to male/female. If your gender is more than 2 types i.e. male/female/unknown then you can use tinyint or int. Thanks
Mehedi Hasan