|
Hi,
On page load I want to display 10K users.This i display in a datalist with paging feature.In my page i have a textbox controls(Name field).When a user enters a letter,that letter matching names should be listed in the datalist control.For eg: if i enter J..then names starting with J like jennifer,jim etc should start to be displayed in datalist.Can anyone provide me a solution of how to do this?.ALso which control is ideal to display 10K users?..I felt dropdownlist would'nt be a good choice..can anyone provide me a solution
Thanks
|
|
|
hi manarvi,
for viewing only the letter that you had inserted,
please using SQL statement like this :-
"SELECT username,age,city FROM TABLE_USER WHERE
username username LIKE 'j%' "
for dropdownlist solutions, why don;t you use textbox.
|
|
|
|
|
Hi,
I tried with wild card search..It's working.How to do with a textbox control..Like in the new yahoo version..In the compose section..When u try to enter letter in the TO field a listbox or a textarea appears and the user can select from the list.How to implement this similar functionality in the textbox?
Thanks
|
|
|
|
|
|
|
|