0
votes
2answers
61 views
What is the best approach to take for user profiles in my web application?
I'm currently building an ASP.NET MVC web application. My site security is (currently) built atop an extension of the System.Web.Security Membership model where I've extended:
A …
0
votes
2answers
49 views
Possible to have multiple Profiles in ASP.NET for different users?
My application has a few different user types with their own members. For example, I have the student user as well as the teacher user. I authenticate my users through active direc …
0
votes
0answers
16 views
Is it possible to access ASP.NET anonymous profile for a logged in user?
The ASP.NET membership supports anonymous users and logged in users.
If you call FormsAuthentication.SetAuthCookie(userName, createPersistentCookie); with a true for createPersist …
1
vote
3answers
87 views
Update an existing user’s profile in ASP.NET
I want to change an existing user's profile without having to create a new profile for the user. For example: I have a user name Usr1 and I want to change only his age, how do I do …
1
vote
1answer
38 views
Accessing asp.net Profiles from App_Code
I am creating a base class from which specific pages are going to be derived. That is, instead of inheriting my pages from System.Web.UI.Page, they're inheriting from MyPage (which …
0
votes
0answers
24 views
CustomProfile is not saving?
I created a class that extends ProfileBase:
public class CustomerProfile : ProfileBase
{
public int CustomerID { get; set; }
public string CustomerName { get; set; }
…
0
votes
1answer
53 views
Can’t access custom profile properties from web.config?
I have the following two profile properties in my web.config file between the System.Web tags:
<anonymousIdentification enabled="true"/>
<profile>
<properties> …
1
vote
2answers
45 views
How to parse PropertyName PropertyValue data?
Hello,
Two web applications I'm working with are using the ASP.NET membership and each have areas for user information which use this Property name/value storage method in the dat …
0
votes
2answers
27 views
Why might this ASP.NET profile section fail to dynamically compile?
When the following profile section is in my web.config, the first page request fail with FileNotFoundException and a bunch of error coming from the compiler (from the look of the s …
0
votes
0answers
19 views
Combining properties made available via webservices profile service aspnet
I really wasn't sure what the title for my question could be, so sorry if it's a bit vague.
I'm working on an application that uses client application services for authentication/ …
0
votes
0answers
53 views
Storing Interface type in ASP.NET Profile
In my ASP.NET website all calls into the data layer return entities as interfaces and the website does not need to know what the concrete type is. This works fine, but I have run i …
0
votes
1answer
144 views
Using Multiple Profile Providers with Overlapping Properties
I am working with a site that needs to use two different asp.net profile providers. They are both added in the web.config and the properties of each of them are listed there as wel …
1
vote
1answer
42 views
Profilesystem / Membershipsystem with Email as login
The ASP.NET Membershipsystem uses a unique username to identify a user. What if I need to login users by E-Mail?
I could just pass the E-Mail into the property for the username, b …
0
votes
2answers
141 views
ASP.net Membership and profiles in WCF
I'm working on a WCF service that requires Membership and Profile access.
I got the Membership stuff working by using System.Web.Security.Membership class and calling CreateUser() …
0
votes
1answer
109 views
ASP.NET Roles and Profiles: best way to query for collection of users who match custom profile property?
ASP.NET 2.0 membership, roles, and profiles is the cat's meow. The API for roles supports handy methods like
GetAllUsersInRole("MyNewsletterSubscriber"), which will return a colle …
