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

How to create different membership based site in PHP codeigniter?

i created one registration form with email verification and log in form with all the security. now i want to add monthly paid membership structure in it. also with free trial for 30 days. i can't understand the logic to implement this thing. it will…
Rcreators
  • 73
  • 11
0
votes
1 answer

asp.net-mvc - how do i create a view to show all unapproved users and allow them to be approved

i have this code in my membership service class (taken from the asp.net-mvc sample app) public MembershipUserCollection GetUnapprovedUsers() { MembershipUserCollection users = Membership.GetAllUsers(); MembershipUserCollection…
leora
  • 188,729
  • 360
  • 878
  • 1,366
0
votes
2 answers

asp.net membership - let admin users manage the site in terms of roles

is there a way i can let the admin users of my site manage roles of other users. I see the asp.net membership tool but that seems to be just for developers of the site. i want a situation where i can give one user admin role and let him manage all…
leora
  • 188,729
  • 360
  • 878
  • 1,366
0
votes
3 answers

how do i access the To access the Web Site Administration Tool

i found an article that says: "To access the Web Site Administration Tool, on the Website menu, click ASP.Net Configuration." I dont see a Website menu in visual studio 2008 when i am looking at my asp.net mvc solution. Is there any other way i can…
leora
  • 188,729
  • 360
  • 878
  • 1,366
0
votes
3 answers

Using Membership rather than just creating your own class

I'm starting to use the 'Membership' framework (as you may have noticed from my past 5 posts). In my code I'm inheriting the SqlMembershipProvider class and overriding the functions, because my database doesn't fit the schema required by…
Luke
  • 22,826
  • 31
  • 110
  • 193
0
votes
1 answer

Membership products data schema

I'm trying to model my organization's membership products for accepting and recording membership purchases in our business database. Someday we hope the purchases will be made online and automatically put into the business database. The problem is…
Sam
0
votes
1 answer

CakePHP: Display Membership Expiry Status

In my system, I have a section for membership details. I want to be able to display a membership expiry status (eg. Current, Due to expire, and Expired) for each member. I already have expiry dates for each of them. I just need a way for the system…
jase89
  • 75
  • 2
  • 7
0
votes
1 answer

Can you validate an inactive user's password in ASP.NET's membership system?

I am creating an activation form for newly-created users in ASP.NET's membership system. When the user is created I send an email with a link to an activation page. However, before the user is activated, I want to verify their user name and…
Graham Powell
  • 283
  • 1
  • 12
0
votes
1 answer

ASP.NET Membership Provider - Expose the salt

Background We are using the ASPNET membership provider that stores member login information, along with MongoDB to store a secondary set of information. Because MongoDB does not offer built-in encryption we have decided to encrypt some of the data…
Max
  • 43
  • 5
0
votes
3 answers

asp.net membership get login name

i see i can call Request.IsAuthenticated but how do i get the login name from asp.net membership provider once i am logged in?
leora
  • 188,729
  • 360
  • 878
  • 1,366
0
votes
6 answers

Problem when password resetting in ASP.NET

I am developing an app which I should design a page for users who forget passwords and send email to them the new passwords. I am using ASP.NET Membership and password format should be hashed. My problem is when sending mail has been failed,…
Hossein Margani
  • 1,056
  • 2
  • 15
  • 35
0
votes
1 answer

User being added to 1 role only (asp.net membership)

I am trying to allow a user to select a role on createuserwizard from a dropdownlist containing all roles. I dont get errors but user always added to the "Offering Rooms" role no matter what dropdownlist item is selected. Code: Protected Sub…
Phil
  • 1,811
  • 9
  • 38
  • 60
0
votes
2 answers

Umbraco -- controlling access to media by membership

I need to set up access to media files with the following structure: A media folder is designated as belonging to a specific member group. Then, a sub-folder below that needs to be available to a subset of members from the parent's member group. Any…
Ryan
0
votes
2 answers

Edit Update Delete in membership

I am creating page for admin to view all user in the system database. I’m using gird view to retrieve all the users in membership table. The problem now is how can Admin edit, delete and update the changes made by the admin? When we want to…
aemy
  • 57
  • 1
  • 4
  • 11
0
votes
2 answers

Proper 100% IsOnline implementation for asp.net membership

I have to design a CMS where a set of credentials can only be used once. So if a user has logged in from his computer, no-one can login with his credentials from another location until that user logs out. Now using the asp.net membership provider…
The_Butcher
  • 2,440
  • 2
  • 27
  • 38