H
hazz
Form: ItemsGrid$ctl02$CheckBox1
is the value printed from the Response.Write for the row below.
How would one obtain the other cell values in that row?
The first value (<td>1</td>) is the one I want. That is the primary key in
the table that will be updated with the changed checkbox value.
Thank you. -Greg
coll=Request.Form;
// Get names of all forms into a string array.
String[] arr1 = coll.AllKeys;
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{
Response.Write("Form: " + arr1[loop1] + "<br>");
}
<tr>
<td>1</td><td>CO_NUMBER</td><td>
<input id="ItemsGrid_ctl02_CheckBox1" type="checkbox"
name="ItemsGrid$ctl02$CheckBox1" checked="checked" />
</td>
</tr>
is the value printed from the Response.Write for the row below.
How would one obtain the other cell values in that row?
The first value (<td>1</td>) is the one I want. That is the primary key in
the table that will be updated with the changed checkbox value.
Thank you. -Greg
coll=Request.Form;
// Get names of all forms into a string array.
String[] arr1 = coll.AllKeys;
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{
Response.Write("Form: " + arr1[loop1] + "<br>");
}
<tr>
<td>1</td><td>CO_NUMBER</td><td>
<input id="ItemsGrid_ctl02_CheckBox1" type="checkbox"
name="ItemsGrid$ctl02$CheckBox1" checked="checked" />
</td>
</tr>