You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
609 B

<%@ Register TagPrefix="obout" Namespace="OboutInc.Combobox" Assembly="obout_Combobox_Net" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script language="VB" runat="server">
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim cbo1 As Combobox = New Combobox()
cbo1.ID = "cbo1"
cbo1.Width = 200
cbo1.Height = 120
cbo1.FolderStyle = "styles/hCombo"
cbo1.DataField_Value = "ContinentID"
cbo1.DataField_Text = "ContinentName"
cbo1.AlignContainer = "left"
cbo1.Title = "Continents"