ASP.Net DropDownList事件处理程序,即使用户选择相同的项目

时间:2011-05-25 07:48:01

标签: asp.net drop-down-menu

我有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>

感谢
艾伦

2 个答案:

答案 0 :(得分:1)

您可以在Button旁边放置一个刷新DropDownList,并在其Click事件处理程序中编写您的逻辑。

用户点击Button比从DropDownList选择相同的项目更容易。

答案 1 :(得分:0)