Hi,
My website uses a web user control. The properties for the user control will be set will be common for a set of my users. e.g. if I have 20 users accessing my website, 5 of them may be using the user control with id = 1 , 4 using the user control with id =2. I have a property associated with each user control which I would like to be shared between users accessing a common id.
I thought of the following:
- Applicaton variable which saves a id / proprty value array combination
- Creating static properties for the user control, however i feel that the value will be shaed between all the users irrespective of the id.
- Or store it in the database [i want to reduce interaction with the database.]
Please advice.