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_autosuggest.aspx

16 lines
638 B

<%@ Register TagPrefix="oajax" Namespace="OboutInc" Assembly="obout_AJAXPage" %>
<%@ Register TagPrefix="obout" Namespace="OboutInc.Combobox" Assembly="obout_Combobox_Net" %>
<%@ Page language="c#" Inherits="OboutInc.oboutAJAXPage" %>
<%@ Import Namespace="System.Xml" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script language="C#" runat="server">
public void Page_Load(object sender, EventArgs e)
{
Combobox cbo1 = new Combobox();
cbo1.ID = "cbo1";
cbo1.Width = 200;
cbo1.Height = 225;
cbo1.OnClientChange = "getWordDescription()";
cbo1.OnClientKeyPress = "openCombobox";