vb.net designing questions
Posted
by ferrer
on Stack Overflow
See other posts from Stack Overflow
or by ferrer
Published on 2010-04-06T21:11:58Z
Indexed on
2010/04/06
21:23 UTC
Read the original article
Hit count: 459
i have created a dynamic table through vb.net, so htmltable, htmltablerow, htmltablecell. I have added all style and properties in there. so eg.
dim td as htmltablecell
td.style.add("width","100px")
td.style.add("color","blue")
now what i want to do is add the tag to each row. this is because the first td of every row is a checkbox. and then textboxes follow. So when anyone clicks on the textbox, i want to checkbox to get checked. Any idea how I can do this?
© Stack Overflow or respective owner