创建具有两个或多个复选框按钮的复选框控件
我需要创建一个包含动态复选框控件的页面。我通过在 page_init 事件中向占位符添加控件来处理此问题。
现在,我必须更改控件以这种方式呈现
一个选项包含 3 个复选框和前 2 个复选框被禁用,并向用户提供一种选择第三个复选框的建议
我如何实现这种要求?
I am having a requirement to create a page which contains dynamic check box controls. I am handling this by adding controls to Placeholder in page_init event.
Now, i have to change the controls to render in this way
One option contains 3 checkboxes and first 2 checkboxes are disabled and gives a kind of suggestion to the user to select the 3rd checkbox
How can i achieve this kind of requirement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用具有三个复选框列的 GridView:
http://www.ezzylearning.com/tutorial .aspx?tid=5187857
You can use a GridView with three checkbox columns:
http://www.ezzylearning.com/tutorial.aspx?tid=5187857
使用 repeater 控件:当需要动态创建一组相同的控件。
Use repeater control: it's good when is a need to dynamically create group of same controls.
我不确定您到底遇到了什么问题,但要禁用
CheckBox
,您只需将Enabled
属性设置为false
>。I'm not sure what you're having a problem with exactly, but to disable a
CheckBox
you just have to set theEnabled
property tofalse
.