我有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>
感谢
艾伦
答案 0 :(得分:1)
您可以在Button
旁边放置一个刷新DropDownList
,并在其Click
事件处理程序中编写您的逻辑。
用户点击Button
比从DropDownList
选择相同的项目更容易。
答案 1 :(得分:0)