ProfileCommon - 它在哪里?

发布于 2024-10-31 18:38:31 字数 506 浏览 2 评论 0原文

我已将其添加到网络配置中:

  <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 类,它找不到它。这不应该是我在构建项目时生成的吗?

I've added this to web config:

  <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>

Though, if I try to use ProfileCommon class, it doesn't find it. Shouldn't this have been generated when I uilt the project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柳若烟 2024-11-07 18:38:31

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

Ok. I have the namespace in my page codebehind and my project is a WEB APPLICATION (NOT WEB SITE) but I don't get the ProfileCommon class.

静若繁花 2024-11-07 18:38:31
using System.Web.Profile;

你导入了命名空间吗?

using System.Web.Profile;

Did you import the namespace?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文