在新创建的MVC4应用程序中,我想将所有USERProfile成员存储在一个会话中,以便我可以在用户登录后访问所有值.但是Session数组对象仅提出2个替代方案
会话[INT] /会话[字符串]
我需要检索
会话[ ‘用户名’];会议[ ‘年龄’];等等
该课程中存在的任何内容.
解决方法
你可以存储
Session["UserProfile"]=UserProfile; // User Profile being an object
需要注意的是,当您检索个人资料时,必须将其投射:
UserProfile profile = (UserProfile) Session["UserProfile"]