About prevent share data store using C#

  • Thread starter Thread starter Yiu
  • Start date Start date
Y

Yiu

i am the beginning of Csharp.
i develop a web application now,
i have a class to store data.
Because it is web application, i only want one user have one data
store class,dont want share the data class and overwrite by other
client.
Have any suggestion to me?
thx
 
Hi
I didn't get exactly what you are aiming to and here is what I understood
You want a place to store some data for each client for your web
application, you want these data items to be private for each client so
each client can only access and modify his own data.
If this is the case, why don, t you use the session object, you can read
more about sessions in asp.net on
http://msdn.microsoft.com/library/default.asp?url=/library/enus/dnaspnet/htm
l/asp12282000.asp
hope this would help.....

Mohamed Mossad
itworx on behalf of Microsoft GTSC Developer support for Middle East
 
Back
Top