Articles in this section
Category / Section

How to bind the xml file with the AutoCompleteTextBox control?

1 min read

 

The following code will bind the Products.xml file with the AutoCompleteTextBox. [Applicable only in 2.0]

C#

protected void AutoCompleteTextBox1_ProvideChoiceListOnCallback(object sender, Syncfusion.Web.UI.WebControls.Tools.ACUserChoiceListEventArgs e)

{

ArrayList userChoiceList = new ArrayList();

string key = e.Key;

DataSet dataset = new DataSet();

string url = "Products.xml";

dataset.ReadXml(this.Context.Server.MapPath(url));

DataTable dataTable = new DataTable();

dataTable = dataset.Tables[0];

DataRow[] Matchrow = dataset.Tables[0].Select();

//Convert data rows to ArrayList

foreach (DataRow row in Matchrow)

{

string emailList = row[0].ToString();

userChoiceList.Add(emailList);

}

e.ChoiceList = userChoiceList;

}

VB

Protected Sub AutoCompleteTextBox1_ProvideChoiceListOnCallback(ByVal sender As Object, ByVal e As Syncfusion.Web.UI.WebControls.Tools.ACUserChoiceListEventArgs)

Dim userChoiceList As ArrayList = New ArrayList()

Dim key As String = e.Key

Dim dataset As DataSet = New DataSet()

Dim url As String = "Products.xml"

dataset.ReadXml(Me.Context.Server.MapPath(url))

Dim dataTable As DataTable = New DataTable()

dataTable = dataset.Tables(0)

Dim Matchrow As DataRow() = dataset.Tables(0).Select()

'Convert data rows to ArrayList

For Each row As DataRow In Matchrow

Dim emailList As String = row(0).ToString()

userChoiceList.Add(emailList)

Next row

e.ChoiceList = userChoiceList

End Sub

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied