H
hazz
What do I do to capture the checkbox values as listed below in order to
update the database table. There will be an ID field also contained in the
row to use in the update query. What would I put in the Button Click event?
Thank you. -Greg
<tr>
<td>CO_NUMBER</td><td>
<input id="ItemsGrid_ctl02_CheckBox1" type="checkbox"
name="ItemsGrid$ctl02$CheckBox1" checked="checked" />
</td>
</tr><tr>
<td>CUST_ID</td><td>
<input id="ItemsGrid_ctl03_CheckBox1" type="checkbox"
name="ItemsGrid$ctl03$CheckBox1" />
</td>
</tr>
protected void Button1_Click(object sender, EventArgs e)
{
Request.Form["??????"];
}
update the database table. There will be an ID field also contained in the
row to use in the update query. What would I put in the Button Click event?
Thank you. -Greg
<tr>
<td>CO_NUMBER</td><td>
<input id="ItemsGrid_ctl02_CheckBox1" type="checkbox"
name="ItemsGrid$ctl02$CheckBox1" checked="checked" />
</td>
</tr><tr>
<td>CUST_ID</td><td>
<input id="ItemsGrid_ctl03_CheckBox1" type="checkbox"
name="ItemsGrid$ctl03$CheckBox1" />
</td>
</tr>
protected void Button1_Click(object sender, EventArgs e)
{
Request.Form["??????"];
}