Click here to Skip to main content
16,017,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,what is the code to bind data to dropdownlist using Cache Memory
Posted
Comments
K Herms 12-Dec-11 10:39am    
What do you mean with Cache Memory? The System.Web.Caching.Cache object? If so, it depends on what you put in the cache.
Generally you can do something like
dropdownlist.DataSource = Cache[""];
dropdownlist.DataBind();
deepakpatil95 12-Dec-11 14:56pm    
i want to bind data to dropdown list of user control. so need to use of (fragment cacheing) for bind data & show data in dropdown on selected index change event of one on other..
Sergey Alexandrovich Kryukov 12-Dec-11 21:33pm    
Why?
--SA

1 solution

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