c#:是否可以在其他页面的 GridView 的 DropDownList 中使用 .aspx 页面的 DropDownList?
我在 .aspx 页面中有包含国家/地区名称列表的 DropDownList,在其他页面上我需要具有相同数据但在 GridView 中的相同 DropDownList。
可以使用 DropDownList 吗?
I am having DropDownList with country name list in my .aspx page and on other page I need the same DropDownList with same data but in GridView.
Is it possible to use that DropDownList ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该创建一个包含此行为的用户控件,然后您可以在多个位置使用此用户控件。
You should create a user control that contains this behavior and then you can this user control in several places.
是的。只需创建另一个下拉框并在 gridview 内的下拉列表中填写相同的数据库数据即可。
Yes. just create another dropdown box and fill in the same database data in the dropdown inside the gridview.