autocomplte extender
how to use autocomplete extender to connect with database to retrieve data
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajagopalan R VPosted May 30, 2014, 6:16 AM
Create Autocomplete.asmx With Autocomplete.cs Page Place .cs file inside "App Code" folder
public List
{
using (OracleConnection con = New OracleConnection(conn))
or
using (SqlConnection con = New Sql Connection(conn)) // ("Which ever db U Use ")
List
con.Open();
// Call Procedure or Query Related to Particular Text Box
// Call Parameters Related to Particular Text Box
// call Result set and Other Codes u Need
con.Close();
}
Place the Below Code in Your Javascript File ("Eg:yyyy.js")
AutoText(".autoChk", "../Autocomplete.asmx/GetComplete", 'ColName')
In aspx Page
This is also one type to use Auto Complete Extender By Using Database
If U Understand Please Mark It Has Answer If U Can't get With This
Please Let Me Know........,
With Regards.....,
R.V.Rajagopalan
selvi subramanianPosted May 15, 2014, 2:02 AM
http://hightechnology.in/ajax-autocomplete-extender-example-in-asp-net/
for what purpose u going to use this tool