想要 asp 下拉列表选择使面板可见

发布于 2024-10-20 17:08:50 字数 48 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

终陌 2024-10-27 17:08:50

假设您有这样的字典

List<string> words = new List<string>();
words.Add("foo");

,然后下拉列表的 onchange 事件

string selectedText = ddlPanel.SelectedText;
foreach(var w in words)
{
 if ( w.Contains(selectedText)
  {
     pnl.Visible = true;
  }
}

lets say you have dictionary like this

List<string> words = new List<string>();
words.Add("foo");

then onchange event of drop down list

string selectedText = ddlPanel.SelectedText;
foreach(var w in words)
{
 if ( w.Contains(selectedText)
  {
     pnl.Visible = true;
  }
}
天冷不及心凉 2024-10-27 17:08:50
<select onchange="if (this.options[this.selectedIndex].value.indexOf('foo') != -1) document.getElementById('panel').style.display = 'block'">
<select onchange="if (this.options[this.selectedIndex].value.indexOf('foo') != -1) document.getElementById('panel').style.display = 'block'">
你的心境我的脸 2024-10-27 17:08:50

将您要隐藏的面板放置在更新面板中,并使用下拉列表更改作为更新面板的触发器。更新时,检查下拉列表的值并设置可见性。

或者,如果您知道面板的 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.

滥情哥ㄟ 2024-10-27 17:08:50

创建包含两个项目的 dropDownlist,“可见”和“不可见”或任何适合您的项目,并确保将 autopostback 属性设置为 true。
然后在 vb 中在页面加载时编写以下内容:

If ddlMydropdown.Text = "visible" then
   panelId.Visible = true
else
   panelId.Visible = false
End If

如果您使用 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 ddlMydropdown.Text = "visible" then
   panelId.Visible = true
else
   panelId.Visible = false
End If

If you code in c#, you can convert this vb code to c# over at developerfusion

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文