∈鱼杆 ---我的鱼塘

执着,坚定,友爱,勇敢(www.pumaboyd.com)Live Message

导航

自定义控件的状态如何保存?

Posted on 2006-11-04 09:16  ∈鱼杆  阅读(443)  评论(2编辑  收藏  举报

自定义控件的 重写了
protected override void Render(HtmlTextWriter output)
{
string htmlString = "<input type=\"checkbox\" name=\"checkbox1\" value=\"checkbox\"><input type=\"checkbox\" name=\"checkbox2\" value=\"checkbox\">";
   output.Write(htmlString);
  }

控件页面显示正常,我添加服务器Button按钮。对控件上的CheckBox勾选操作,很显然如果我点击Button按钮操作,我的勾选操作都会消失。请问我要如何保存勾选动作的状态。不知道CheckBoxList是如何做到的。