避免在 ASP.NET 中创建 ProfileCommon
我正在使用 asp.net 配置文件功能。 我需要使用一些配置文件属性名称,例如“test/appname”。
当我尝试启动 Web 应用程序时,收到有关无效属性名称的错误。我认为问题是自动生成的 profilecommon 类。
我正在使用 getter 和 setter 访问配置文件属性,因此我不需要 profilecommon 类
如何避免创建此类?
I'm using asp.net profile functionality.
I need to use some profile property names like "test/appname".
When I try to star the web application I get an error about invalid property name. I think the problem is the autogenerated profilecommon class.
I'm accesing profile properties with getters and setters so I don't need the profilecommon class
How can I avoid this class creation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是网站项目还是 Web 应用程序项目?
编辑
如何分配配置文件值?
检查有关必须自己为 Web 项目实现配置文件的部分 - 也是 MVC AFAIK:
http://www.codersbarn.com/帖子/2008/07/10/ASPNET-PayPal-Subscriptions-IPN.aspx
Is this a Website project or a Web Application project?
EDIT
How to assign Profile values?
Check the part about having to implement profiles yourself for the Web Project - also MVC AFAIK:
http://www.codersbarn.com/post/2008/07/10/ASPNET-PayPal-Subscriptions-IPN.aspx