ASP.Net DropDownList 事件处理程序,即使用户选择相同的项目
我有一个允许用户进行选择的 DropDownList
。这些选择会导致填充表格。
当用户选择不同的值时,这一切都可以正常工作。但是,即使用户选择相同的值,我也想刷新表。
有谁知道我可以使用 ASP.Net DropDownList
上的什么事件来实现此目的?
我的 DropDownList 看起来像:
<asp:DropDownList ID="ddlClient" runat="server" AutoPostBack="True">
<asp:ListItem Value="1">1</asp:ListItem>
<asp:ListItem Value="2">2</asp:ListItem>
<asp:ListItem Value="3">3</asp:ListItem>
<asp:ListItem Value="4">4</asp:ListItem>
</asp:DropDownList>
谢谢
艾伦
I have a DropDownList
that allows users to make selections. These selections result in a table being populated.
This all works fine when users select different values. However, I woudl like to refresh the table even when the user selects the same value.
Does anyone know what event on the ASP.Net DropDownList
that I can use for this?
My DropDownList looks like:
<asp:DropDownList ID="ddlClient" runat="server" AutoPostBack="True">
<asp:ListItem Value="1">1</asp:ListItem>
<asp:ListItem Value="2">2</asp:ListItem>
<asp:ListItem Value="3">3</asp:ListItem>
<asp:ListItem Value="4">4</asp:ListItem>
</asp:DropDownList>
Thanks
Alan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在
DropDownList
旁边放置一个刷新Button
,并将逻辑写入其Click
事件处理程序中。用户单击
Button
比从DropDownList
中选择相同的项目更容易。You can place a refresh
Button
next to theDropDownList
and write your logic inside itsClick
event handler too.It would be easier to the user to click the
Button
than selecting the same item from theDropDownList
.这是您的答案:
DropDownList 烦恼:相同的值不会触发事件
Here is your answer:
DropDownList annoyance: same value won't trigger event