views:

182

answers:

1

I have a question regarding Textbox autocomplete propert. I have set textbox autocompleteMode to "Suggest" and have set AutoCompleteSource to CustomerSource. I have a AutoCompleteCustomSource collection :

"A"
"A"
"AA"
"AAA"

When i type "A" in textbox, suggest displays only one "A".Why is this ?
And how to display both characters "A" ?

Thanks in advance

A: 

I don't think it's possible without doing all the work yourself, unfortunately (e.g. by creating your own custom control that is a TextBox with duplicates-friendly auto-complete).

However, I'm not quite sure why you want duplicates to appear? Since the 2 strings are equal, what difference would there be to auto-complete with one or the other?

Ludovic
i will display suggest thru database.there is one column "Name" and there are many rows which have duplicate entries.I need to show All entries.so only asked this question.Thanks for your reply.
Girish