如何在 FormView 中保存 CheckBoxList 中的项目?
我在 FormView 内部使用 CheckBoxList 和 ObjectDataSource。 为了将所选值绑定到 CheckBoxList,我使用 FormView_DataBound 事件来查找 CheckBoxList 并设置所选项目。 这很好用。
现在保存这些值变得有问题。 是否可以使用ObjectDataSource来更新这些值,或者我是否必须在ObjectDataSource保存后保存它们?
I am using a CheckBoxList inside of a FormView with an ObjectDataSource. In order to bind the selected values to the CheckBoxList I am using the FormView_DataBound event to find the CheckBoxList and set the selected items. This works fine.
Now saving these values is becoming problematic. Is it possible to use the ObjectDataSource to update these values, or do I have to save them after the ObjectDataSource saves?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此代码放入 formview 插入事件中...迭代复选框列表并在数据表中添加所选项目并传递到 BLL
ASPX 页面代码..参数类型
,然后迭代 BLL 中的数据表并相应保存到数据库中
put this code in formview inserting event... Iterate checkbox list and add selected item in datatable and pass to your BLL
ASPX page code.. parameter type
and then iterate datatable in your BLL and save into DB accordingly