i have a users list that i would like to be able to get all logged in users by search on autocomplete
how can i do that?
Loading
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.
Roei BarPosted Aug 17, 2009, 10:55 AM
its using Json over RPC
you basically need to create a handler file
like this
and a simple form
on the head put the following
on the body
and In your code behind (*.aspx.cs) add to the Page_Load function:
txtUserID.Attributes.Add("onkeyup", "suggest(this.value);")txtUserID.Attributes.Add("onblur", "fill();")
thats it :-)
Kirtan PatelPosted Aug 17, 2009, 12:53 PM
Windows Form or ASp.net ?