For this block:
Code:
<%
'--Write out the checkbox with the value set to the Category ID
response.write "<td><input type=""checkbox"" name=""categoriesChecked"" value="& LinkID & """><font face=""Arial, Helvetica, sans-serif"" size=""1"">"& DisplayCategory & "</font></td>"
Else
'--This condition takes care of the case where your last column has fewer rows than the first one
Response.write "<td> </td>"
end if
Next
response.write "</tr>"
Next%>
You seem to be missing a quotation. Here's the fix:
Code:
<input type=""checkbox"" name=""categoriesChecked"" value="""& LinkID & """>
Otherwise your generated code may end up like this:
Code:
<input type="checkbox" name="categoriesChecked" value=21">
Bookmarks