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.
|
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
|
|||||||||||||||||||||
|
|
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:
|
|||
|
|
|
Web Application Projects can still use the ProfileCommon object but only at runtime. The code for it is just not generated in the project itself but the class is generated by ASP.Net and is present at runtime. The simplest way to get to object is to use a dynamic type as demonstrated below. In the Web.config file declare the profile properties:
Then to access the properties:
To save changes to profile properties:
The above works fine if you are comfortable using dynamic types and don't mind the lack of compile-time checking and intellisense. If you use this with ASP.Net MVC you have to do some additional work if you pass the dynamic profile object to your views since the HTML helper methods don't play well with "model" objects that are dynamic. You will have to assign profile properties to statically typed variables before passing them to HTML helper methods.
If you create a custom profile class, as Joel described above, ASP.Net will still generate the ProfileCommon class but it will inherit from your custom profile class. If you don't specify a custom profile class ProfileCommon will inherit from System.Web.Profile.ProfileBase. If you create your own profile class make sure that you don't specify profile properties in the Web.config file that you've already declared in your custom profile class. If you do ASP.Net will give a compiler error when it tries to generate the ProfileCommon class. |
||||
|
|
|
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. |
|||||||
|
|
MSDN walkthrough for creating a custom class (a.k.a. Joel's method): |
|||
|
|
|
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 |
|||
|
|
|
Great post, Just a note on the web.config if you dont specify the inherit attribute in the profile element you will need to specify each indiviudal profile property inside the profile element on the web.config as below
|
||||
|
|
|
I was also running through the same issue. But instead of creating a class which inherits from ProfileBase, I used the HttpContext. Specify properties in web.config file as follows : -
Now, write the following code : -
Compile and run the code. You will get following output: -
|
|||
|
|



