Tagged Questions

6
votes
1answer
220 views

ASP.Net profiles: difficulty setting up and using profile fields

I'm currently trying to use ASP.Net Profiles to store additional user information about users that register on our site. Relevant sample code: UserProfile.cs public class UserProfile: ...
2
votes
1answer
124 views

How to create different asp.net User Profiles

Is possible define different profiles a the same time? I have two type of users in my web site and they have different properties. Using asp.net profile is possible to define two or more profiles with ...
1
vote
2answers
270 views

Storing user profile data in the users table or separate profile table?

I'm developing a quick side project that needs a users table, and I want them to be able to store profile data. I was already reaching for the ASP.NET profile provider when I realized that users will ...
1
vote
1answer
51 views

Whats a solution for using Profiles in asp.net Web Applications?

What solutions are available to access Profile information since Web Applications do not expose ProfileCommon class like Web Site projects do.
1
vote
1answer
341 views

ASP.NET Profiles - Add a profile to an existing user

How do you add a profile entry (consisting of a guid, two strings, and an integer) to an existing user in the default SQL profile and membership providers? I can do this either via a sql query or C# ...
1
vote
2answers
431 views

ASP.Net MVC & Memberships

I would really appreciate some feedback on what I am trying to achieve: The problem: I would like to authorize a user of my application to a single action on the controller. For e.g.: a user can ...
0
votes
1answer
39 views

ASP.NET profile deletion

We use the ASP.NET profile subsystem to associate key-value pairs of information with users. I am implementing functionality for the deletion of users. I have been using the ...
0
votes
0answers
96 views

ASP.Net : Storing Profile settings in the session

This question is potentially a big one but does anyone have a solution to store Profile properties in the Session rather than in a database. Sample source code for a ProfileProvider would be okay but ...