imports System.Xml imports System.Data.OleDb public partial class vb_autosuggest Inherits OboutInc.oboutAJAXPage ' This method loads the words from the database and creates and XML string ' The XML string will be used to add the options to the combobox Public Function OnSuggestOptions(ByVal sText As String) As String Dim sResponse As String = "" ' Setting the connection Dim oConn As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath("../App_Data/A_Words.mdb")) oConn.Open()