Click here to Skip to main content
15,892,643 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to display show more results link in autocompletet List items.I have set the CompletionSetCount="8" after 8 result it will list the Show more result link.When user click show more results link then display list items next items.
Posted

1 solution

I think you can look like this.
if (Databounditems.Count > 8) { list.Add(new string("Show More")); }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900