I don't know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.
|
6
|
|
|
|
|
|
I had the same problem today, and learned a lot. There are two kinds of project in Visual Studio -- "Web Site Projects" and "Web Application Projects." For reasons which are a complete mystery to me, Web Application Projects cannot use Profile. directly... the strongly-typed class is not magically generated for you from the Web.config file, so you have to roll your own. The sample code in MSDN assumes you are using a Web Site Project, and they tell you just to add a You have two choices to roll your own: (1) Use the Web Profile Builder. This is a custom tool you add to Visual Studio which automatically generates the Profile object you need from your definition in Web.config. I chose not to do this, because I didn't want my code to depend on this extra tool to compile, which could have caused problems for someone else down the line when they tried to build my code without realizing that they needed this tool. (2) Make your own class that derives from In your web.config:
In a file called AccountProfile.cs:
To set a profile value:
To get a profile value
|
||
|
|
The Web Profile Builder worked great for me. The class it generated has a lot more in it than as described by Joel's post. Whether or not its actually needed or useful I dont know. Anyway for those looking for an easy way to generate the class, but not wanting to have an external build tool dependency you can always
OR (untested but may just work)
if this second approach does work can someone let me know for future reference |
||
|
|
|
|
When you create a new Web site project in Visual Studio then the object that is returned from Profile will be (automatically) generated for you. When you create a Web application project or an MVC project, you will have to roll your own. This probably sounds more difficult than it is. You need to do the following:
|
||
|
|
|
|
If you are using a web application project, you cannot access the Profile object at design-time out-of-the-box. Here is a utility that supposedly does it for you: http://weblogs.asp.net/joewrobel/archive/2008/02/03/web-profile-builder-for-web-application-projects.aspx. Personally, that utility caused an error in my project so I ended up rolling my own profile class to inherit from ProfileBase. It was not hard to do at all. |
||||||
|
