如何在asp.net mvc 3中通过userId获取配置文件信息?

时间:2013-02-14 19:56:24

标签: asp.net asp.net-mvc asp.net-mvc-3 asp.net-membership

我想实现用户个人资料,以便其他用户可以看到它。

如何通过asp.net mvc3中的id获取有关特定用户的个人资料信息?

1 个答案:

答案 0 :(得分:2)

这是(简而言之)如何实现默认配置文件提供程序。

在您的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,