lunargirrl
Programmer
Hi people 
How can I store and read the Checkbox "Checked" value to and from a table in my database?
TIA,
Gis.
How can I store and read the Checkbox "Checked" value to and from a table in my database?
TIA,
Gis.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim closed As SqlParameter = New SqlParameter("@CLOSED", CBool(Me.chkClosed.Checked))
sqlCommand.Parameters.Add(closed)
Me.chkClosed.Checked = CBool(DataBinder.Eval(dsClient, "Tables[CLT].defaultView.[0].CLOSED"))