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

发布于 2024-11-09 07:04:38 字数 590 浏览 0 评论 0原文

我有一个允许用户进行选择的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

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

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

You can place a refresh Button next to the DropDownList and write your logic inside its Click event handler too.

It would be easier to the user to click the Button than selecting the same item from the DropDownList.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文