在复选框 ASP.NET Control 中输入值吗?

发布于 2024-12-24 18:49:47 字数 762 浏览 1 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

许仙没带伞 2024-12-31 18:49:47

因为您使用的是网络表单,所以我会使用复选框列表,而不是带有复选框的转发器。然后,您可以定义复选框列表的文本和值属性。

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.

何时共饮酒 2024-12-31 18:49:47

您可以使用转发器的 ItemTemplate 中的数据绑定值来设置它的选中值

You can set the checked value of it with a databound value in your repeater's ItemTemplate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文