I want to make custom control which has couple of <input type='checkbox' />
controls which I render in Render method.
Is it possible to retain ViewState (e.g. checked or not) on these Controls?
There is a way of doing this by using ASP.NET server CheckBox control, adding them in OnLoad event with this.Controls.Add(), and giving them same Ids everytime, but I don't wat to do this :)