In WebCombo, you can create unbound WebCombo using PopulateUnboundData method.
This topic will show you how to use PopulateUnboundData method.
To create unbound WebCombo using PopulateUnboundData method
- Drag WebCombo instance from ToolBox to WebForm.
- In Page_Load event handler, add the following code :
WebCombo1.DataMember = "Customers";
WebCombo1.DataTextField = "ContactName";
WebCombo1.DataValueField = "CustomerID";
WebCombo1.LayoutSettings.StatusBoxVisible = false;
WebCombo1.Columns.Add("ContactName");
WebCombo1.Columns.Add("CustomerID");
dsNorthwind.CustomersDataTable dt = new dsNorthwind.CustomersDataTable();
dsNorthwindTableAdapters.CustomersTableAdapter da = new dsNorthwindTableAdapters.CustomersTableAdapter();
da.Fill(dt);
WebCombo1.PopulateUnboundData(dt, false);
|
- Run the project.