中继器控件中的下拉列表
我有 3 个下拉列表,其中包含数据库中的一组值。在我的页面中,我有不同的控件。我打算在中继器控件中添加此下拉列表。
当用户选择一个值时,该值将通过控件内的保存按钮或自动保存到数据库中。
您能让我知道这是否可能吗?如果是,任何可以共享的代码都会有所帮助。
I have 3 dropdownlist which will have set of values from the database. In my page, I have different controls. I was planning to add this dropdownlist in a repeater control.
When a user selects a value, the value will be saved to the database, either by a save button inside the control or automatically.
Could you please let me know if this is possible? If yes, any code that can be shared would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。诀窍在于下拉列表的数据源与中继器的数据源是分开的。
Yes, it's possible. The trick is that the DataSource for the dropdownlists are separate than the DataSource of the Repeater.
这是示例代码:
}
Here's the sample code:
}