Hi all,

I've got a treeview which generates asp checkboxes on each node programatically and assigns an ID to them.

now in another query, I want to "find" the checkbox, and change it's checked value to "checked" if the query tells me to...

How do I find a normal asp control on an aspx page in my vb code?

So... what I want to do is this...

Generate the treeview and render all the checkboxes (This works, everything is rendered)

Run another query, and as each line reads in the database, find the control (checkbox) and then check the checkbox in the tree if the sql query has the control id's checked column to true...

All I actually wanna know is how can I call and change the checked property of the asp control.

Thanks