我想实现用户配置文件,以便其他用户能够看到它。
如何通过 asp.net mvc3 中的 id 获取特定用户的个人资料信息?
我想实现用户配置文件,以便其他用户能够看到它。
如何通过 asp.net mvc3 中的 id 获取特定用户的个人资料信息?
这是(简而言之)实现默认配置文件提供程序的方式。
在您的 web.config 中,添加
<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="ApplicationServices"
<!--same connection string as the membership provider-->
applicationName="/"/>
</providers>
<properties>
<add name="FirstName" type="string"/>
<add name="LastName" type="string"/>
<!--...or whatever profile properties you want/need-->
</properties>
</profile>
然后您可以为配置文件属性分配值
ProfileBase profile = ProfileBase.Create(userName);
profile["FirstName"] = "John";
profile["LastName"] = "Smith";
并读取值
string firstName;
string lastName;
ProfileBase profile = ProfileBase.Create(userName);
firstName = profile["FirstName"] as string,
lastName = profile["LastName"] as string,