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.
OboutSuite/Combobox/cs_ajaxpage_dynamic_cbo.aspx

16 lines
733 B

<%@ Page Language="C#" ASPCOMPAT="TRUE" Debug="true" Inherits="OboutInc.oboutAJAXPage"%>
<%@ Import Namespace="System.Data.OleDb" %>
<%@ Register TagPrefix="oajax" Namespace="OboutInc" Assembly="obout_AJAXPage" %>
<%@ Register TagPrefix="obout" Namespace="OboutInc.Combobox" Assembly="obout_Combobox_Net" %>
<script language="C#" runat="server">
static readonly object obj = new object();
Combobox cboContinent = new Combobox();
Combobox cboCountry = new Combobox();
void Page_Load(object sender, EventArgs e) {
cboContinent.ID = "cboContinent";
cboContinent.FolderStyle = "styles/default";
cboContinent.Width = 200;
cboContinent.OnClientChange = "SelectContinent()";