sideeffectz
New Member
I need to add a checkbox in a html table I know the usual method like\[code\] <td> <input type="checkbox" name ="chk1" /> </td>\[/code\]but my current code is\[code\]string html=""; html += "<table>";html += "<tr><th>" + "A" + "</th><th>" + "B" + "</th><th>" + "C" + </th></tr>";html += "<tr><td>" + "0" + "</td><td>" + "1" + "</td><td>" + "2" + </td></td>+"<input type="checkbox" name ="chk1" /> " +</td> </tr>"; html += "</table>";\[/code\]but its shows error.... How to solve this problem ??? I want to add chkbox in the above code