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

NTLM/Windows Authentication and GetAllUsers()

I'm designing a web app which will be used on an intranet so Windows authentication mode is ideal. However, part of the app would need the ability to get a list of users (to pick users for assignments. Membership.GetAllUsers() doesn't apply (on…
hometoast
  • 11,522
  • 5
  • 41
  • 58
0
votes
1 answer

How to create user without using Membership.CreateUser()?

Will someone please tell me how to create a user without using membership.createuser() and create user wizard in asp.net? I need to perform an additional insert on an existing table during CreateUser().
Krishanu Dey
  • 6,326
  • 7
  • 51
  • 69
0
votes
1 answer

Change Mapping of fields of CreateUserWizard control with membership provider asp.net 4.0

I am using CreateUserWizard Control with membership provider in asp.net 4.0. In this case user name is stored in 'user name' field in aspnet_Users table. I want to save 'user name' field in email field of aspnet_Membership table (In my case username…
Ali
  • 3,545
  • 11
  • 44
  • 63
0
votes
1 answer

Wordpress : Page that can be viewed only by members and if not a member than show them a registration page

I am trying to create a sampling process , where a user need to register or login to view my sample pdf documents , and once they register the user should be given a role as a sampler . I am not a pro at wordpress but am learning . Can u guys…
nestrocuation
  • 219
  • 1
  • 4
  • 9
0
votes
1 answer

ASP.NET Membership Redirect User on Denial of Access

I want to redirect the user to a custom error page when s/he is denied access to a page because of ASP.NET Membership's Roles. I thought this could be solved by the customErrors section of the web.config file, but none of the errors I've tried has…
Matthew Jones
  • 25,644
  • 17
  • 102
  • 155
0
votes
1 answer

Excluding the profile provider, is there an easy way to add custom fields to ASP.NET membership?

I know you can use the Profile provider for custom fields, but given the way the data is stored in the database, it is not efficient for my needs. Is there a way to add custom fields to the database for use with membership, while taking advantage of…
Kevin
  • 1,940
  • 3
  • 24
  • 38
0
votes
1 answer

After creating a user or if creation fails, any more attempts at saving returns MembershipCreteStatus more than once

I have a Silverlight web app using WCF and Membership.CreateUser to create new users. If I successfully create a user, then create another user, I get the "User sucessfully created" status message twice. Or if my first attempt at creating a new user…
Neill
  • 711
  • 2
  • 13
  • 32
0
votes
1 answer

How to create a role in asp.net web.config file using my query ?

Deal All i have a query how to write the web.config file to perform my that operation mentioned below : i have directory in my asp.net website namely BOSS inside BOSS directory i have IMAGE directory... i have allow only admins to access BOSS…
-1
votes
1 answer

Is it possible to change the user on an exception without having a user logged in?

I'm trying to add Elmah logging to a webservice. The user gets authenticated to confirm that they are a valid user, but then they're never truly logged in. Because of this, when an error is thrown and recorded by ELMAH, the username is always blank.…
Cyfer13
  • 369
  • 7
  • 17
-1
votes
0 answers

User database that is shared between (wordpress) website and an app

I'm a Unity developer and want to create an app where some content is restricted behind a paywall. The users should be able to create an account on the website, subscribe and then log-in on the app. How is something like this usually done? I'm not…
-1
votes
1 answer

When using IN_LIST in a CMake condition, getting "Unknown arguments specified"

Consider the following CMakeLists.txt file: cmake_minimum_required(VERSION 3.25.0 FATAL_ERROR) project(foo) set(my_list one two three) if ("two" IN_LIST ${my_list}) message("two is in your list") else() message("two is NOT in your…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
-1
votes
3 answers

Php Register System

I will develop a register system with php. First step user will fill basic information, next step payment information, next step more information. Theese step are different tabs top on the page. There should not any postback at transitions between…
user811686
  • 37
  • 1
  • 5
-1
votes
1 answer

How to assign a role to a member for a SPECIFIC DURATION of time

I'm working on discord server, and I want to assign a role for specific duration, let's say for 1 month, 6 months or 12 months. I've tried "Member ful" Bot Integration but it is not free to use. Any help will be appreciated and I'll be thankful for…
-1
votes
2 answers

membership test to find if a number is present in array

given an array of int is there a way to do membership test to see if a particular number is present in the int array. the question was to do find missing number between 1-10 given by user. eg [1,2,3,4,5] if 1 is in array it should give true. I cant…
-1
votes
2 answers

how to use if statement to test membership of a string

I'm having trouble understanding my logic in a simple Python statement. I'm trying to use 'not in' to test whether 's' or '5' is a part of the input but when I use either of them the same print statement is executed which says 's or 5 is not…
podjv
  • 3
  • 2