Here we begin to see the versatility of EasyListBox.
By changing the value of the DisplayMode property, you can have a fully-functional ASP.NET combobox
with no extra code. Tweak the LimitToList property to make sure users enter a valid choice from
the list... even customize the error message for when they don't follow the rules.
If you need still more power for those extra-big recordsets, see how easy it is to add AJAX to your combobox... with no extra code!
<ELB:EasyListBox id="comboStates" Height="120px"
DisplayMode="combo"
RestrictionMessage="That's not a real state!"
Width="220px"
ListBorderStyle="solid"
ButtonColor="#e0d0a0" ArrowColor="teal"
Background="wheat" RollBGColor="teal"
TextColor="#555555" RollTextColor="#ffffff"
runat="server" />
|