Questions tagged [membership]

Queries regarding The fact of being a member of a group. OR The number or body of members in a group.

A member is a person who belongs to a social group or an entity such as a company or nation. By extension it can refer to any part of a whole.

969 questions
0
votes
1 answer

Accessing table aspnet_Users to update data

I was trying to use Chris S' solution for updating a username in aspnet_Users table - solution described here: Is it possible to change the username with the Membership API It worked once then it stopped and now I'm getting an error message…
nickornotto
  • 1,946
  • 4
  • 36
  • 68
0
votes
1 answer

ASP.NET MembershipProvider applicattionName attribute: What it works for?

Its my first time asking here, i hope get help, and meanwhile, help you ppl too =) My question is very simple: What is the point of the applicationName attribute in the Membership Provider tables in ASP.NET? I was thinking of implementing my own…
Tony
  • 2,473
  • 3
  • 23
  • 32
0
votes
1 answer

Is there a way to update the PasswordAnswer when using the ASP.NET 2.0 Membership API?

Is there a way to update the PasswordAnswer when using the ASP.NET 2.0 Membership API? I want to be clear, I'm not trying to change the password, but rather I'm trying the give the user the option to update the Security Question and Security Answer…
donde
  • 351
  • 5
  • 12
0
votes
1 answer

umbraco membership createuser & select profile data

I have created a class to handle membership user creation with custom fields. I have done it based on this solutions: How to assign Profile values? Using ASP .NET Membership and Profile with MVC, how can I create a user and set it to…
nickornotto
  • 1,946
  • 4
  • 36
  • 68
0
votes
1 answer

active directory membership provider and user data

If I'm using active directory as a user store, how do I relate information in my database to a particular user? Should I insert them into the database after authenticating them ( which seems redundant to me) or is using the ad membership provider…
Robert
  • 1,638
  • 7
  • 34
  • 45
0
votes
1 answer

Trying to find getAdminStatus method

The SuperAdmin page in my web application has a method call to getAdminStatus() but I cannot find any occurences of this method when searching the entire solution. Is this method part of the .net 2.0 framework.
test
0
votes
1 answer

writeExceptionsToEventLog error

I have this error message. The parser error message :attribute is not recognized writeExceptionsToEventLog What do I wrong? This is my code in web.config
Will_G
  • 269
  • 2
  • 5
  • 18
0
votes
1 answer

.net membership authentication fails after first attempt / successful login

I'm creating an SSO system using .net membership. I've successfully authenticated users, however, the problem is that once a user logs in, if the user logs out, then tries to login again, the next login attempt fails ("your login attempt was not…
user2175152
  • 50
  • 1
  • 8
0
votes
1 answer

ASP.NET C# (3.5), Membership, how to set RoleName using a DropDownList in a GridView?

I try to set "RoleName" using a DropDownList in a GridView, but I get this error: DataBinding: 'System.String' does not contain a property with the name 'RoleName'. I've done whatever you imagine, mentioned in different forums. Here are the codes: …
Kardo
  • 1,658
  • 4
  • 32
  • 52
0
votes
0 answers

Migrating From ASP.NET Web Form .NET 3.5 to MVC 4.0

I have a plan to convert and migrate my old project from asp.net webform 3.5 to mvc 4.0. I want to know if it is possible to do not make any changes on my existing customised membership (from net 3.5) on my new project (mvc 4.0) ? Any advices are…
0
votes
2 answers

NotSupportedException - Membership.GetAllUsers

My code is fairly simple. var member = Membership.GetAllUsers(); It throws "NotSupportedExpcetion" when this line is executed. I am trying to retrieve a list of users and populate on the web ui. Thank you.
Kok Leong Fong
  • 241
  • 1
  • 2
  • 5
0
votes
2 answers

Flash .Net tie-in

I'd like to have placeholders in an .swf file that I can populate with information from .Net Membership information. Is this possible?
Cat
0
votes
1 answer

Creating a More Complex Login Page.. Which Membership?

I want to two steps on my login screen, UserGroup and UserName like; Group A UserID=1 Username=ahmet UserID=2 Username=mehmet, name=mehmet, surname=demir UserID=3 Username=ali, name=ali, surname=bakır Group B UserID=4 Username=veli UserID=5…
yusuf
  • 1,233
  • 1
  • 15
  • 29
0
votes
3 answers

PHP Links to User Profiles After Membership

I already have written a login and register script. The user can login to their account edit their details etc. The details are stored in a users table which has many different data properties related to the user. I was wondering, how do I make it…
bobby
0
votes
1 answer

Why using telling .net about provider?

I can't understand why many people talk about creating membership provider that inherit from some base class in the asp.net library and registering the provider in the web.config file. Because we can get anything we want without doing this. I have…
Younes Ch
  • 325
  • 2
  • 4
  • 14