gpt4 book ai didi

c# - 为什么下拉事件不工作 asp

转载 作者:行者123 更新时间:2023-11-30 22:10:21 27 4
gpt4 key购买 nike

我有一个下拉列表,它的事件(不显示你好)不工作....

aspx页面

<asp:DropDownList ID="DropDownList1" runat="server" 
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
<asp:ListItem>5</asp:ListItem>
</asp:DropDownList>

aspx.cs页面

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Console.WriteLine("Hello");
}

问题是如果我在 console.writeline 中保留断点它不起作用...我在哪里出错...任何想法。谢谢...

最佳答案

在您的 aspx 代码中添加 AutoPostBack="true",如下所示:

<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
<asp:ListItem>5</asp:ListItem>
</asp:DropDownList>

关于c# - 为什么下拉事件不工作 asp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20866166/

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