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

learn more… | top users | synonyms

0
votes
0answers
8 views

change password error asp.net

i am creating change password page i already use the website admin tool to create rols and users, then on trying the password change for 1 user it give the following error Server Error in '/CLINIC' ...
0
votes
0answers
15 views

Existing MVC3 Application in VS2010 - Is it Possible to Add Membership Tables to Existing Database

Is it possible to add the SqlServer Membership and Role Provider tables to an existing sql server express database which is stored in the App_Data directory. I know I can use the ASP.Net Configuration ...
0
votes
0answers
8 views

ANFIS membership functions

I'm creating some ANFIS via the ANFIS MATLAB Toolbox. I have time series of inputs and target values. The if-then structure identification is done in one case using Grid Partitioning, in the other ...
0
votes
0answers
15 views

Compare sharepoint membership with value

I must customize a list view. I must create a query to filter items of the list. A part of the query is about to check if current user is an administrator. I would like something like this: ...
-1
votes
0answers
25 views

Each user have its own page in ASP.NET MVC 4

In ASP.NET MVC 4 how Admin can create all users and can access all of the content. Each user should only have access to the content that is accossiated with him. Condition user1 should not be ...
0
votes
0answers
11 views

How to use multiple application names with single hosted membership web site

I have one web application which implements Authentication and Authorization services(Security Application) using ASP.net Membership provider which was hosted in IIS. Now,I am creating multiple ...
0
votes
0answers
14 views

Roles.IsUserInRole throwing a dataservicequeryexception

What i'm trying to do is to test if a role is affected to a user or not, the method (fig 1 ) which test is exposed with WCF Data Service, and i'm trying to call it (fig 2 ) from the client side. the ...
0
votes
0answers
7 views

Implementing change interceptors with WCF and Xpo

I'm trying to add some access rules with queryinterceptors/changeinterceptors in my wcf data service. well i've added this method which i decorated with [ChangeInterceptor] ...
1
vote
3answers
46 views

Checking row membership of a matrix

I have a matrix in which each row vector has a name. I would like to check row membership in my matrix, that is I would like to turn the following into R code: if(mat contains "rowname") { do ...
0
votes
4answers
54 views

How to delete all users in my membership table?

I have a test that requires all users in my SimpleMembershipProvider UserProfile table to be deleted. I'd like to do this in my SeedMembership() method (below). Something like ...
0
votes
0answers
20 views

web2py auth_user table and access control

I have a web2py app that is using auth.settings.extra_fields to add an extra field called 'title'. I have manually added a set of roles into the auth_groups table. I want set the membership of the ...
0
votes
0answers
44 views

php membership system with openid [closed]

I would like to replace a membership system. I would like to implement a open source membership system that support openid. I found many CMS did not support membership. I am using a shared webhosting ...
0
votes
1answer
26 views

Membership Provider returning remoteAddress is Null

We are using a proprietary Single Sign On Service to remotely do Membership calls. We connect via a VPN. We are getting en error at: Service.Web.Security.Membership.ValidateUser(username, ...
0
votes
0answers
34 views

Change connectionstring for Membership Provider at runtime?

I found this code on the web Imports System Imports System.Collections.Specialized Namespace Williablog.Net.Examples.Providers Public Class SqlMembershipProvider Inherits ...
0
votes
0answers
20 views

membership plugin - moving users levels

I've a website to develop which is based on Membership plugin, we have got an accident with moving users from level 2 to 3 or level 3 to 4 and so on. Users are moved every 7 days (after account ...
0
votes
1answer
40 views

ASP MVC CreateUser vs CreateAccount

What's the difference between SimpleMembershipProvider.CreateAccount and SimpleMembershipProvider.CreateUser ? Which one should i use ? Also, WebSecurity only has createAccount and ...
0
votes
0answers
57 views

ASP MVC SimpleMembership and WebSecurity

im building a big app for a school project, separated in a few layers, being the presentation layer (the web server using asp mvc 4), logic and data layer. Im kinda new to asp mvc, and im stuck with ...
0
votes
1answer
87 views

ASP.Net Roles and Membership check for Users in role for multiple roles

I have users in membership and one user can have one or more than one roles assigned. I want to check for specific roles of a page for example: Role1, Role2, Role3, Role4, Role5 Users who have ...
1
vote
1answer
25 views

IF payment completed do - buddypress wordpress

I'm working on buddypress custom subscription form. At the moment accounts are created just after filling the membership form, it means, a lot of accounts are created without paying. We want to clean ...
0
votes
3answers
85 views

Best way to allow access to members area by IP via PHP or HTACCESS or something else?

I would like to know if allowing access to a membership area would be more efficient by htaccess allow or a PHP array of ips to check against every page. I am mainly interested in performance. Are ...
0
votes
1answer
51 views

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 ...
1
vote
3answers
204 views

ASP.NET Configuration Website For Membership - database setup (aspnet_ tables) - having problems pointing to the right database

I'm setting up membership in my ASP.NET MVC4 app, so I open the solution and then from there, I open up the ASP.NET Configuration website option under the "Project" menu. This opens up the ASP.NET ...
1
vote
0answers
29 views

.NET Membership deletes properties not on web.config in other apps

I want to make sure that I need to label this as a risk because it is the expected behaviour. I have several applications that access one database with the credentials stored. If I connect a new ...
0
votes
0answers
27 views

Integrate OpenAuth/OpenID with Universal Providers

Now, I am using Microsoft.AspNet.Membership.OpenAuth to Integrate OpenAuth With Universal Providers, I can create a External user by call openauth.create(p,p,p,p), but every time I call ...
0
votes
0answers
17 views

System.Web.Security no Membership [duplicate]

Target Framework is .Net Framework 4 not .Net Framework Client Profile using System; using System.Collections.Generic; using System.IO; using System.ComponentModel; using System.Data; using ...
1
vote
0answers
70 views

Need help setting up Membership with ASP.NET MVC4/jQuery Mobile

I'm trying to figure out the best solution to integrate user authentication into my ASP.NET MVC4 web app. I'm not familiar at all with ASP.NET membership providers. What I ultimately want to be able ...
4
votes
1answer
130 views

Java equivalent of Python 'in' - for set membership test?

I want to check if an item exists in an item set. I want to do this in java: def is_item_in_set(item, item_set): if item in item_set: return true else: return false ...
0
votes
1answer
98 views

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, ...
0
votes
1answer
44 views

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 ...
0
votes
2answers
27 views

Checking if user is a member of a specific facebook group

Do you have an example of how to confirm that the person trying to access the content of your app is a member of a specific facebook group, using php? I've read through the developer docs and all it ...
0
votes
0answers
23 views

Change ActiveDirectory server

I would like to change the default active directory server to which my application connects to retrieve some users infos. I have installed "Active Directory Lightweight Directory Services" on my ...
1
vote
1answer
95 views

How to integrate / combine Membership plugin With BuddyPress plugin in Wordpress WPMU

I want to make the membership/subscription plugin correlate with the user profile type. The site has membership/subscription *(wpmedev plug in)*. There are three memberships (parent, care provider, ...
0
votes
1answer
46 views

Users no longer in database but can still log in

So I'm running into a very strange bug right now...I have some registered users on my site, which can still log in. This normally would be as it should be, but what I'm finding is that now, seemingly ...
0
votes
2answers
46 views

Change password error

I want to change a password for a user. I tried this but it doesn't work: MembershipUser mu = Membership.GetUser(ddlUsers.SelectedValue, false); **mu.ChangePassword(mu.ResetPassword(), ...
0
votes
1answer
24 views

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 <membership> ...
0
votes
1answer
58 views

.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 ...
0
votes
0answers
32 views

Remember me function in ASP.NET MVC [duplicate]

I'd like to have a remember me function in my website that automatically logins users. I know i can use use the setauthcookie true, but isn't this unsecure and how does it work? Because you only ...
0
votes
0answers
41 views

Club membership management and Paypal payments

i've been asked by a club to work on a new website for them, and i basically need to import all the old members contacts from the old website into the new one. I'd like also to provide the possibility ...
0
votes
1answer
313 views

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, ...
0
votes
3answers
125 views

ASP.NET C# (3.5) Membership, How to get Approved Users only?

I need a list of "Approved" Users only, but don't know how to figure it out. lstUsersNotInRole.DataSource = Membership.GetAllUsers(); // Get Approved Users Only!?! lstUsersNotInRole.DataBind(); Any ...
0
votes
0answers
6 views

linq to enteties membership table

when I try to access membership table with linq to enteties I get error: The underlying provider failed on Open. all other tables are working good with linq to enteties edmx my method is: var ...
0
votes
1answer
241 views

MVC4 Membership: How do I notify membership provider on logout?

I have cretated a very basic MVC 4 site using the VS2012 "Internet Application" template and I'm trying to implement a custom MembershipProvider class. On login, the template code calls ...
1
vote
1answer
89 views

Membership.ValidateUser is Slow

I am using the System.Web.Sercurity.Membership methods to deal with users of our web service. I was very happy with it during testing as our database and web service resided on the same server. When ...
0
votes
0answers
112 views

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 ...
0
votes
1answer
279 views

simplemembership MVC4 get username by userId

Someone who works with MVC4 and the SIMPLEMEMBERSHIP knows how can I get a username by the userId? The user is not logged in and I want to delete it, and to delete I have to use ...
1
vote
3answers
409 views

Get UserId (int) in new MVC4 application

New MVC4 application created UserProfile table : UserId(int) | UserName(nvarchar) In controller : string currentUser = User.Identity.Name; // returns UserName var mu1 = Membership.GetUser(); ...
1
vote
1answer
53 views

Java Attribute Driven Collection

I need to implement some specific functionality and I am wondering if you might know of a java library that does this, or something like it already. I would rather use an existing before building my ...
0
votes
1answer
86 views

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. ...
0
votes
0answers
42 views

Is there a way to implement Asp.Net Membership into SQL Server Compact within a Windows Forms App?

I cannot find a way to implement this, I've tried and even searched here on Stack Overflow a few tutorials but all of them were for implementations of SQL Server Compact and Asp.Net on a Web Project ...
0
votes
1answer
139 views

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, ...

1 2 3 4 5 14