如果我不在ASP.Net和ASP.Net MVC应用程序中使用Session
,我想知道保存每个用户的简单ID等数据的最佳方法是什么?
答案 0 :(得分:4)
您可以使用Cookie,或者如果它只是当前经过身份验证的用户的ID,Forms Authentication
Cookie似乎正是为此目的而设计的。可以扩展表单身份验证cookie,并添加一些您在每个请求上可能需要的自定义用户信息(例如用户的名字和姓氏)。这将避免您在每个请求上命中数据库。您可以使用Forms Authentication cookie的UserData部分。
答案 1 :(得分:4)
您可以将其存储在用户配置文件中,这可以通过继承ProfileBase来扩展,您可以实现自己的属性。
例如:
public class ProfileManager : ProfileBase
{
public ProfileManager() : base()
{
}
[SettingsAllowAnonymous(false)]
[ProfileProvider("AspNetSqlProfileProvider")]
public string DisplayName {
get
{
return base["DisplayName"].ToString();
}
set
{
base["DisplayName"] = value;
this.Save();
}
}
}
在您的配置中,您需要告诉您的应用程序您的个人资料的类型:
<profile inherits="ProfileNamespace.ProfileManager" defaultProvider="AspNetSqlProfileProvider" enabled="true">
<providers>
<clear />
<add name="AspNetSqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</profile>