Question

  Asked: Apr 14 2008   11:00 PM GMT
  Asked by: Anupamak15


about checkbox


VB.NET 2005, SQL Server, CheckBox, Visual Basic .NET, VB.NET, .

Iam just at the very basic level of entering a boolean value(yes/no) for the check box cheked value in to a database with field check...for this Iam using a string variable checkvalue and proceeding like this
private sub submitbtn_click(.......)
dim checkvalue as string=""
if checkbox1.checked= true then
checkvalue="yes"
else if
checkbo2.checked=true then
checkvalue="no"
end if
dim strsql as string="insert into table (.....,check)values(........,'" & checkvalue & "')"
con.open()
dim cmd as sqlcommand(con,strsql)
cmd.executenonquery()
con.close()
end sub
but this approach is showing me an syntax error at check which i couldn't find any error in my code...
is it the correct programming practice or any thing wrong with my code....plz suggest me the right way to store the checked value into the database
regards
Anu

Subscribe to Alerts! Get questions and answers delivered to your Inbox.


E-mail me updates on this question



   SUBSCRIBE

hidden modal window

Answer Wiki (Improve, edit or add to this answer)


 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0



If you are trying to put this into a field with a data type of BIT (which would be the database equivalent of boolean) then you have to put in a 0 or a 1. These are the only two values which a field of the BIT data type supports. 0 = No, 1 = Yes.
  • AddThis Social Bookmark Button

Browse more Questions and Answers on Development and SQL Server.

Looking for relevant Development Whitepapers? Visit the SearchWinDevelopment.com Research Library.


Discuss This Answer


You must be logged-in to discuss a question. Log-in/Register