What is the use of the profile property feature of ASP.NET?
What is the use of the profile property feature of ASP.NET?
Rating:
The profile properties is one of the features of ASP.NET that is used to store user-specific data on the Web server. Although this feature is similar to the session state, the profile data is not lost even when a user's session has expired. The profile properties stores data in a persistent format and is associated with requests of a specific user. This feature can easily manage user data without creating and maintaining a database. The profile data makes all the information easily available to a user. Any data can be stored in the user's profile in which a user can define and maintain any kind of data.
Rating:
Other articles
- Why is a cookieless session implemented on a mobile Web application?
- Adding and Configuring Server Controls to a Web Forms Page Using C# .NET
- What is the UI structural components?
- What is a Web custom control?
- How to create a global theme for all Web applications on a Web server?
