 |
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|

June 30th, 2006, 03:34 AM
|
Authorized User
|
|
Join Date: Jun 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
autocomplete dropdownlistASP.NET 2.0 & VB.NET 2005
Hi,
I need to create a autocomplete dropdownlist in ASP.NET 2.0 using VB.NET 2005 platform. I have 6000 customers. I need to filter records depnding on the intitial characters typed by user.
For example, if user types ",Cha", the dropdownlist should show all records starting with "Cha".
Can anybody giv me a clue how to do tis ???
Alex
|

July 20th, 2006, 10:30 AM
|
Authorized User
|
|
Join Date: Apr 2005
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Try ComboBox and DualSelectBox from AspLib component library ( http://asplib.net).
These controls support AJAX behavior: partially items loading and fast items uploading for large items collections.
|

August 11th, 2006, 02:18 PM
|
Authorized User
|
|
Join Date: May 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Maybe some one know liked free control?
|

August 11th, 2006, 04:20 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Heuh? What do you mean?
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.
|

August 12th, 2006, 08:45 PM
|
Authorized User
|
|
Join Date: Apr 2005
Posts: 94
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Atlas is free. Check out http://atlas.asp.net
Download latest atlas CTP and At www.codeplex.com get the latest Atlas Toolkit. In the toolkit is autocomplete. It will require you writing a web services to populate the list for a conduit. Only way to get autocomplete is through AJAX.
Or you could write the java code that will track the number of characters typed in a text box and upon that magic number build an xmlHttpRequest() object to talk to a aspx page that will return the names based on what was typed. Look up xmlHttp to see how to do this by hand. I have been looking up how Atlas works by reading how to hand do AJAX and it is not pretty hehe.
|

February 20th, 2009, 07:10 AM
|
Registered User
|
|
Join Date: Feb 2009
Posts: 2
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
AutoComplete
hello friends,
I need coding(asp.net(c#)) textbox using autocomplete
Thanks in advance.
by
kavitha
|

February 23rd, 2009, 07:04 AM
|
Authorized User
|
|
Join Date: Jan 2009
Posts: 43
Thanks: 0
Thanked 2 Times in 2 Posts
|
|
from dinesh
__________________
dinesh s
|
The Following User Says Thank You to dinesh For This Useful Post:
|
|

February 23rd, 2009, 07:08 AM
|
Authorized User
|
|
Join Date: Jan 2009
Posts: 43
Thanks: 0
Thanked 2 Times in 2 Posts
|
|
from dinesh
__________________
dinesh s
|

February 23rd, 2009, 07:50 AM
|
Authorized User
|
|
Join Date: Mar 2005
Posts: 36
Thanks: 2
Thanked 1 Time in 1 Post
|
|
Hello,
You could use a third party tool from Telerik. RadCombobox is the control name. Yours is the exact reason for which we are using this control in our project. But a word of acution, please do all sort of POCs before you committing to your client.
It may cause some functionality issues at times when we have typical business scenarios to be implemented.
|
|
 |