Thanks in advance
I have a loop that produces checkboxes and results from my variables. Then I build a table to display the results.
I want to make each checkbox to be unigue to each row in the table.
user clicks a button if the checkboxes are checked then some how grab the results from the row. Then I will pass it to another page to save the results.
Does anyone know how to do this
iCrs = 0
For i = 0 to (objLst1.length - 1)
Cs = objLst1.item(i).text
Cn = objLst2.item(i).text
Ct = objLst3.item(i).text
OrgID = objLst4.item(i).text
CG = objLst5.item(i).text
Cc = objLst6.item(i).text
iCrs = iCrs + 1
Response.Write"<tr align=left><td><label><input type=""checkbox"" name=""" &iCrs& """ value=""checkbox""></label></td><td>" & OrgID & " </td><td>" & Ct & " </td><td>" & Cc & " </td><td>" & CG & " </td><td>" & " </tr></td>"
//<td>" & NewTerm & "
Next
I have a loop that produces checkboxes and results from my variables. Then I build a table to display the results.
I want to make each checkbox to be unigue to each row in the table.
user clicks a button if the checkboxes are checked then some how grab the results from the row. Then I will pass it to another page to save the results.
Does anyone know how to do this
iCrs = 0
For i = 0 to (objLst1.length - 1)
Cs = objLst1.item(i).text
Cn = objLst2.item(i).text
Ct = objLst3.item(i).text
OrgID = objLst4.item(i).text
CG = objLst5.item(i).text
Cc = objLst6.item(i).text
iCrs = iCrs + 1
Response.Write"<tr align=left><td><label><input type=""checkbox"" name=""" &iCrs& """ value=""checkbox""></label></td><td>" & OrgID & " </td><td>" & Ct & " </td><td>" & Cc & " </td><td>" & CG & " </td><td>" & " </tr></td>"
//<td>" & NewTerm & "
Next