Hi,

Why when I click the checkbox and submit it stills submit a False value?

Thank you

Code:
Try
            query = "UPDATE TblChangeControlDet SET PeerRvwApp=@PeerRvwApp WHERE ChangeID=@ChangeID"
            cmdC = New SqlCommand(query, conn)

            cmdC.Parameters.AddWithValue("@PeerRvwApp", chkpeer.Text)

            cmdC.ExecuteNonQuery()

        Catch ex As Exception
            MsgBox(ex.Message, MsgBoxStyle.Information, "CCMS")
        End Try
ote: chkpeer is the name of the checkbox..

Thxs