用另一个控件替换中继器中的控件
我有一个带有文本框的中继器,当我在中继器上进入编辑模式时,我想用可用选项的下拉列表替换文本框。有没有办法删除项目数据绑定上的文本框并将其替换为所选行索引的下拉列表。
I have a repeater that has a text box and when I enter edit mode on my repeater, I want to replace the text box with a dropdownlist of available options. Is there a way to remove the text box upon item databind and replace it with a dropdownlist for the selected rows index.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用您正在使用的任何内容来指示 OnItemDataBound 事件中的编辑模式和编辑索引。那么最简单的方法就是隐藏文本框并显示下拉列表。这是否适合您取决于您想要做什么。
Use whatever you are using to indicate edit mode and edit index in the OnItemDataBound event. Then the easiest way is to just hide the text box and show the dropdownlist instead. Whether this works for you or not is dependent on what you're trying to do.