multi paged multiple checkboxes with same name pro
Hi,
Here I am Having Dynamically generated table which consists of id, name, date, Featured(checkbox). I Am generating this table too dynamically using asp.net. In that i am using following tag to generate checkbox
dim tc as new tablecell
tc.text="<input type = 'Checkbox' id='chk' value=" & ds.tables(0).rows(i).item(id) & ">"
then i added this cell to table
i am getting all these checkboxes displayed in form
but when it comes to posting, after posting too
request("chk") i s always remains "" even though there is many are checked.
Help me to resolve this problem
|