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
501 B

using System;
using System.Data.OleDb;
using OboutInc.Combobox;
public class cs_execload : OboutInc.oboutAJAXPage
{
protected Combobox cboContinent;
protected Combobox cboCountry;
static readonly object obj = new object();
void Page_Load(object sender, EventArgs e) {
if (!IsPostBack)
{
// load continent list from the database
OleDbConnection myConn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("../App_Data/DynamicCombobox.mdb"));