<%@ Page AutoEventWireup="true" CodeFile="DefaultVB.aspx.vb" Inherits="ComboBox.Examples.Functionality.ComboBoxVSDropDownList.DefaultVB"Language="vb" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
<title>Telerik ASP.NET Example</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<form id="form1" runat="server">
<telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
<div class="demo-container">
<h3>DropDownList</h3>
<telerik:RadDropDownList RenderMode="Lightweight" ID="RadDropDownList1" runat="server" Width="300" Height="200px" DropDownHeight="200px"
EmptyMessage="Search for people..."
DataSourceID="SqlDataSource1" DataTextField="ContactName" EnableVirtualScrolling="true">
</telerik:RadDropDownList>
</div>
<div class="demo-container">
<h3>ComboBox</h3>
<telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBox1" runat="server" Width="300" Height="200"
EmptyMessage="Select a Company" EnableLoadOnDemand="True" ShowMoreResultsBox="true"
EnableVirtualScrolling="true" OnItemsRequested="RadComboBox1_ItemsRequested">
</telerik:RadComboBox>
</div>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
SelectCommand="SELECT [ContactName] FROM [Customers] Order By ContactName" />
<div>
<img class="comparison" alt="DropDownList and ComboBox comparison" src="Images/ComboBoxVSDropDownList.png" />
</div>
</form>
</body>
</html>