Hi, If I want to select only limited(2) items from the listbox then using Jquery use the below code, <head id=”Head1″ > <script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js”></script> </head> <body> <form runat=”server”> <asp:ListBox ID=”ListBox1″ runat=”server” SelectionMode=”Multiple”> <asp:ListItem Text=”Item1″></asp:ListItem> <asp:ListItem Text=”Item2″></asp:ListItem> <asp:ListItem Text=”Item3″></asp:ListItem> <asp:ListItem Text=”Item4″></asp:ListItem> </asp:ListBox> </form> </body> <script type=”text/javascript”> $(‘#<%= ListBox1.ClientID %>’).change(function() { if ($(this).find(‘option:selected’).length > 2) { [...]
Comments