Monday, 17 March 2025

Filter Auto Suggestion Feature in ASP.NET Dropdown List View

Leave a Comment

This post will describe how to use ASP.Net's filtering feature to receive auto suggestions from a dropdown list view. The data will be loaded from the script side and the Dropdown view asp:DropDownList tag will be used. The client-side dropdown view suggestion will be obtained with the aid of JavaScript's 'onkeyup' events. The following is an example markup page using javascript code.

Markup page

<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server"><main>
    <script type="text/javascript">
        function filterDropdown() {
            var input, filter, dropdown, options, i;
            input = document.getElementById("txtSearch");
            filter = input.value.toUpperCase();
            dropdown = document.getElementById("<%= ddlOptions.ClientID %>");
             options = dropdown.getElementsByTagName("option");
             for (i = 0; i < options.length; i++) {
                 if (options[i].textContent.toUpperCase().indexOf(filter) > -1) {
                     options[i].style.display = "";
                 } else {
                     options[i].style.display = "none";
                 }
             }
         }
    </script>
            <div>
            <label for="txtSearch">Search:</label>
                <input type="text" id="txtSearch" onkeyup="filterDropdown()" placeholder="Search options..." />
            <asp:DropDownList ID="ddlOptions" runat="server">
                <asp:ListItem Text="Option" Value="Select"></asp:ListItem>
                <asp:ListItem Text="Option 1" Value="1"></asp:ListItem>
                <asp:ListItem Text="Option 2" Value="2"></asp:ListItem>
                <asp:ListItem Text="Option 3" Value="3"></asp:ListItem>
                <asp:ListItem Text="Option 4" Value="4"></asp:ListItem>


            </asp:DropDownList></div>

    </main>
</asp:Content>

Server end page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
    ' No server-side logic needed for this example.
    If Not IsPostBack Then
        ddlOptions.Items.Clear()
        ddlOptions.Items.Add(New ListItem("aaa", "1"))
        ddlOptions.Items.Add(New ListItem("bbb 2", "2"))
        ddlOptions.Items.Add(New ListItem("ccc 3", "3"))
        ddlOptions.Items.Add(New ListItem("dd 4", "4"))
    End If
End Sub

Output

Best ASP.NET Core 8.0.11 Hosting Recommendation

One of the most important things when choosing a good ASP.NET Core 8.0.11 hosting is the feature and reliability. HostForLIFE is the leading provider of Windows hosting and affordable ASP.NET Core, their servers are optimized for PHP web applications. The performance and the uptime of the hosting service are excellent and the features of the web hosting plan are even greater than what many hosting providers ask you to pay for. 

At HostForLIFE.eu, customers can also experience fast ASP.NET Core hosting. The company invested a lot of money to ensure the best and fastest performance of the datacenters, servers, network and other facilities. Its datacenters are equipped with the top equipments like cooling system, fire detection, high speed Internet connection, and so on. That is why HostForLIFEASP.NET guarantees 99.9% uptime for ASP.NET Core. And the engineers do regular maintenance and monitoring works to assure its Orchard hosting are security and always up.

0 comments:

Post a Comment