ProfileCommon - 它在哪里?
我已将其添加到网络配置中:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的。我的页面代码隐藏中有命名空间,我的项目是一个 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.
你导入了命名空间吗?
Did you import the namespace?