User-34860367 posted
Hello all,
I got SQL Server table that stored the checkboxes, radiobuttonlist, textbox values.
For example, table named tblData with the column and data following:
ID, CHKBOX1, CHKBOX2, CHKBOX3, RADIOBUTTONLIST1, RADIOBUTTONLIST2, TEXTBOX
1, false, false, true, true, 0, sample text 1
2, false, true, false, true, 1, sample text 2
3, true, false, true, false, 2, sample text 3
I used the Session["ID"] and need to populate the data when page loading based on column ID (Primary Key) .
Any help is much appreciated. Thanks in advance.