想要 asp 下拉列表选择使面板可见
我有一个 asp 下拉列表,如果选择包含某个单词,我想让面板可见 - 这怎么可能?
I have an asp dropdownlist that I would like to make a panel visible if the selection contains a certain word- how would this be possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您有这样的字典
,然后下拉列表的 onchange 事件
lets say you have dictionary like this
then onchange event of drop down list
将您要隐藏的面板放置在更新面板中,并使用下拉列表更改作为更新面板的触发器。更新时,检查下拉列表的值并设置可见性。
或者,如果您知道面板的 ID,您可以手动使用 javascript 并将更改事件绑定到一个函数,该函数检查值并相应地显示/隐藏面板。
Place the panel you're looking to hide within an update panel, and use the dropdownlist change as a trigger to the updatepanel. On the update, check the dropdownlist's value and set the visibility.
Either that, or if you know the ID of the panel you can manually use javascript and bind the change event to a function that checks the values and shows/hides the panel accordingly.
创建包含两个项目的 dropDownlist,“可见”和“不可见”或任何适合您的项目,并确保将 autopostback 属性设置为 true。
然后在 vb 中在页面加载时编写以下内容:
如果您使用 c# 编写代码,则可以将此 vb 代码转换为 c# over developerfusion
Create dropDownlist with two items, "visible" and "not visible" or whatever suits you and make sure to set the autopostback property to true.
Then in vb write the following on page load:
If you code in c#, you can convert this vb code to c# over at developerfusion