在复选框 ASP.NET Control 中输入值吗?
我是 ASP.NET 的新手程序员。所以我的数据库有两个表:UserTypes 和 UserTypeDivisions
UserType contains for example
UserTypeId Description
1 Programmer
2 Designer
UserTypeDivisions contains for example
UserTypeDivisionId UserTypeId Description
1 1 c#
2 1 Ruby
3 1 c++
4 2 Web
5 2 Books
然后我有一个教程表。每个教程可供所有部门或仅某些部门访问。所以我想用 checkboxes
打印 userTypes 及其分区。
我的问题是我使用两个带有复选框 asp NEt 的中继器。但我不知道如何将值属性分配给复选框(userTypeDivisionId)。
我如何分配给复选框 ASP.NEt 控制 value 属性?
提前致谢
i am a newbie programmer in ASP.NET. So My database have two tables: UserTypes and UserTypeDivisions
UserType contains for example
UserTypeId Description
1 Programmer
2 Designer
UserTypeDivisions contains for example
UserTypeDivisionId UserTypeId Description
1 1 c#
2 1 Ruby
3 1 c++
4 2 Web
5 2 Books
Then i have a table for tutorials. Each tutorial can be accessed by all divisions or only for some. So i want print userTypes and its Divisions with checkboxes
.
My problem is thar i use two repeater with checkboxes asp NEt . But i don´t know how assign value attribute to checkboxes (userTypeDivisionId).
How could i assign to checkbox ASP.NEt control the value attribute?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为您使用的是网络表单,所以我会使用复选框列表,而不是带有复选框的转发器。然后,您可以定义复选框列表的文本和值属性。
since you are using webforms I would go use a checkboxlist, rather than a repeater with checkboxes. you can then define the text and value properties of the check box list.
您可以使用转发器的 ItemTemplate 中的数据绑定值来设置它的选中值
You can set the checked value of it with a databound value in your repeater's ItemTemplate