how to access a dynamic-created html checkbox in code?

  • Thread starter Thread starter trank
  • Start date Start date
T

trank

I created some checkboxes(<input type=checkbox>) dynamically,and then I'd
like to access these checkboxes in code behind using C#.
For they are not standard controls like Windows Checkbox, I can't catch it
by FindControl().....how can i do this?
Many thanks a lot!

By trank
(e-mail address removed)
 
Unless you created these checkboxes as some sort of Server Control, you
won't be able to access them in the CodeBehind class, as they will not be
members of your Page class.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Back
Top