how to create auto complete text box in ASP
-
hi, how to create an auto complete text in ASP. if possible, provide me sample code. regards :|
Tech_spidy
-
hi, how to create an auto complete text in ASP. if possible, provide me sample code. regards :|
Tech_spidy
What exactly do you mean by auto complete? Where will the auto data come from?
-
hi, how to create an auto complete text in ASP. if possible, provide me sample code. regards :|
Tech_spidy
-
What exactly do you mean by auto complete? Where will the auto data come from?
hi Sam Heller, auto complete textbox in the sense, in mobile when we are typing 'A' it will start showing the names coming under 'A',like that to do in ASP. may be set of data we can store and retrive from db :|
Tech_spidy
-
hi Sam Heller, auto complete textbox in the sense, in mobile when we are typing 'A' it will start showing the names coming under 'A',like that to do in ASP. may be set of data we can store and retrive from db :|
Tech_spidy
Oh i see what you mean. You need to use Javascript, in particular the onkeyup function i think it's called. Then perform some sort of data retrieval upon what was typed in and show it in a positioned div below the the textbox. That's the rough idea anyway. If your using ASP.NET you could always just use the new autocomplete Atlas feature which you can get in the Toolkit
-
Oh i see what you mean. You need to use Javascript, in particular the onkeyup function i think it's called. Then perform some sort of data retrieval upon what was typed in and show it in a positioned div below the the textbox. That's the rough idea anyway. If your using ASP.NET you could always just use the new autocomplete Atlas feature which you can get in the Toolkit
thanks for ur hint Sam Heller
Tech_spidy