Page.User.Identity.Name

  • Thread starter Thread starter polilop
  • Start date Start date
P

polilop

Is it possible to somehow extend the IIDentity and add more fields,
so i can store other user information ?
Where dose .NET keep the data (Identity.name), in cookie/cache?
 
re:
!> Is it possible to somehow extend the IIDentity and add more fields,
!> so i can store other user information ?

Use ASP.NET Profile to store additional user information.




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espanol : http://asp.net.do/foros/
======================================
 
The way how .net keeps user data depends on membership provider. Most common
is SqlMembershipProvider that keeps data in database tables. I may want to
add your own table to keep more data.
 
Back
Top