What's the simplest way to automatically scroll an ASP.Net ListBox to the first selected item when SelectionMode is set to "Multiple"?
<asp:ListBox ID="LbSymptomCodesEdit" CausesValidation="true" ValidationGroup="VG_SAVE" Height="100%" Width="100%" runat="server" SelectionMode="Multiple"></asp:ListBox>
The ListBox is located in the EditItemTemplate of a FormView within an UpdatePanel. While using jQuery is an option, I am looking for an ASP.NET server-side or Ajax solution to achieve this to avoid unnecessary client scripts.