ProfileCommon - 在哪里?

时间:2011-04-11 18:04:31

标签: asp.net-profiles

我已将此添加到网络配置:

  <profile enabled="true" >

  <properties >

    <add name="Gender" type="string"/>
    <add name="Age" type="Int32"/>
  </properties>

  <providers>
    <clear/>
    <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
  </providers>
</profile>

但是,如果我尝试使用ProfileCommon类,它就找不到它。我不应该在项目结束时生成这个吗?

2 个答案:

答案 0 :(得分:0)

确定。我在我的页面代码隐藏中有命名空间,我的项目是WEB应用程序(不是网站)但我没有得到ProfileCommon类。

答案 1 :(得分:-1)

using System.Web.Profile;

您导入了名称空间吗?