gpt4 book ai didi

asp.net - 在 VB.NET 中以编程方式为 DropDownList 设置 OnSelectedIndexChanged

转载 作者:行者123 更新时间:2023-12-05 03:15:45 28 4
gpt4 key购买 nike

我试过下面的代码,但没有用:

    DropDownList1.SelectedIndexChanged += new EventHandler ( doSub );
  1. 它是用 C# 而不是 VB
  2. 当我键入 DropDownList1 时。 intellisense 不带 SelectedIndexChanged 方法
  3. 最后它提示 SelectedIndexChanged 是一个事件,必须由 RaiseEvent 调用

我正在尝试根据彼此的 SelectedValue 动态创建 ddls,因此我需要以编程方式设置 OnSelectedIndexChanged 值,而不是像这样声明式地设置:

    <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true" OnSelectedIndexChanged="DoSub">
</asp:DropDownList>

提前致谢。

提示:删除@Page 部分中的 AutoEventWireup="false"以使解决方案生效。

最佳答案

使用AddHandler附加事件处理程序。

语法:

AddHandler obj.EventName, AddressOf HandlerName

例子:

<script runat="server">
Protected Sub Page_Load(sender As Object, e As System.EventArgs)
AddHandler DropDownList1.SelectedIndexChanged, AddressOf DoSub
End Sub
Sub DoSub(sender As Object, e As System.EventArgs)
Response.Write(DropDownList1.SelectedValue)
End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True">
<asp:ListItem>Foo</asp:ListItem>
<asp:ListItem>Bar</asp:ListItem>
</asp:DropDownList>

</div>
</form>
</body>

关于asp.net - 在 VB.NET 中以编程方式为 DropDownList 设置 OnSelectedIndexChanged,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12173578/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com