ASP.NET membership gives you a built-in way to validate and store user credentials.
0
votes
0answers
9 views
Update column in WebSecurity class ASP.Net MVC
I want to update only one column value. IsConfirmed in web security. I want to update this column value for users with 0 and/or 1. But I only can do IsConfirmed with 1. How can I update that using ...
0
votes
0answers
10 views
Web.Publish and Web.Debug for asp.net authentication
Can you outline the steps required to use the Web.Publish and Web.Debug config files effectively for ASP.NET membership?
I'm using MVC 4 and entity framework using the repository pattern so I have a ...
1
vote
2answers
25 views
FormsAuthenticationTicket cannot be invalidated server side. Causing cookie reply attacks
I have an ASP.NET web application using forms membership authentication. We have recently been penetration tested and an issue that was flagged was the ability to steal a users account. If the ...
0
votes
1answer
16 views
List all Membership users into razor view
i'm using Razor with MVC3 in my project. I use membership to handle user registration and i want to diplay all my users into a table .
here's my Action:
public ActionResult ListProfile()
{
...
0
votes
1answer
36 views
ASP.NET Membership returning SAME session information for every user
I have an ASP.NET Membership application. I log in as "JONNY" and this is a success. RUPERT then (from a different PC, at a different location) clicks on the members area and he is not prompted to ...
2
votes
2answers
15 views
How permissions of a role be overidden with the permission of a user in membership class
I am working in MVC3. I have created 3 roles: Administrator,Manager and Staff and have manager1 and manager2 in manager role. I want to give add,edit,view,delete privilege to manager. I don't want to ...
0
votes
1answer
51 views
How do I use my own database with SimpleMembership and WebSecurity? What is MVC4 security all about?
I've read everything on this topic I could find, including MSDN articles and SO posts, but I'm still very lost and confused.
Questions
Please answer the following (briefly, if possible):
What is ...
0
votes
2answers
20 views
2 problems with testing asp.net membership provider
I have created a unit test to search for users by name. I have 2 problems I cant figure out.
Assert.IsTrue(coll.Count == 2) doesnt count the users as it should. There should be 2 users and it only ...
0
votes
1answer
38 views
Asp.net MVC3 Membership
Hi i'm using membership in MVC 3 project to register an login users. But the project in production will use active directory provider for login. In AD we have some information like email and firstname ...
0
votes
0answers
26 views
ASP.NET Login control not working in Release mode
I have a simple Login control in my ASP.NET 4.0 application -- Here's the provider section in my web.config:
<providers>
<clear />
<remove ...
2
votes
2answers
37 views
Role Provider / Membership? How to in asp.net web api?
I am building an asp.net mvc web api application and not sure how to do the membership stuff.
In my current project I have this
My own Users Table and Role Table I am not using asp.net membership as ...
1
vote
3answers
41 views
Minimal database for ASP.NET MVC 3 user management / membership
I am new to ASP.NET MVC 3 and am dealing with database inherited by me from Visual Studio master. There are lots of stored procedures and user roles like aspnet_Membership_BasicAccess, ...
0
votes
1answer
50 views
MVC3 Registration form and model
I have a question regarding the MVC 3 and more exaclty about the views and models. I want to mention that I'm new to MVC so I'm oly learning it.
Basically for example lets take te registration form:
...
0
votes
1answer
26 views
Entity Framework Code First and WebMatrix membership
I started a new project with EntityFramework 5.0 Code First with Automatic Migration and MVC4 with Simple Membership.
And I modified the Configuration.cs with the following:
protected ...
2
votes
1answer
28 views
What is meaning of multiply a table to self and get one field?
This is the Source code of WebMatrix.WebData.SimpleMembershipProvider.GetHashedPassword:
private string GetHashedPassword(IDatabase db, int userId)
{
var pwdQuery = ...
0
votes
1answer
48 views
How to create custom WebSecurity.Login and WebSecurity.CreateUserAndAccount methods in MVC 4?
When we choose New Project --> MVC 4 --> Internet Application, it will automatically generate AccountController for us. In this controller, I only care about 2 actions, Login and Register.
In ...
0
votes
0answers
18 views
Using Asp.net membership's aspnet_Profile with indexes
Single line question: How can we use aspnet_profiles as query criteria ? (I'm avoiding about performance issue)
We have kept some user data in aspnet_profile structure.
They are FriendlyUserName, ...
0
votes
0answers
22 views
Multiple Forms Authentication Cookies? Employee/Customer
Is there a way to have two forms authentication cookies for a web application in .Net?
I'm thinking of a scenario where a company employee would place an order for a customer. Instead of creating a ...
0
votes
0answers
18 views
After publishing to server (1and1), I can't log in (try to create master error), ASP.NET 4.0
1- I have a website, codded with the visual studio 2012 templates. I've not implemented Entity framework (but i could see references to it on the web.config).
2- On localhost running, also ...
0
votes
1answer
50 views
Customize the default MembershipProvider in Sharepoint 2010 FBA Site?
I have a default Membership Provider in my FBA site.
I create a Application Page(VS-2010) as a login page, here i develop the custom login page and authenticating a user by their Username and Email. ...
0
votes
3answers
38 views
Utilize the ASP.NET Default Membership
I am working on a system where authentication / authorization is part of the requirements. My ERD for the system is as follows:
I haven't fully populated the Entities, but you can probably guess ...
2
votes
1answer
25 views
ASP.NET Membership: Custom Profile Inheritance
I'm using ASP.NET MVC4, I've setup a custom profile class as described in this article about universal membership providers
public class CustomProfile : ProfileBase
{
public DateTime? Birthdate
...
0
votes
1answer
26 views
checking for duplicate email and user name in unit test
I have to check for duplicate email and user name in this unit test. Speaking with another developer, he said I should check for the duplicate email and user name in a nested try catch. Im not sure I ...
0
votes
0answers
18 views
sharepoint2010 fba with sql, requirement: changing username[loginname] for userprofile [closed]
I have configured forms based authentication with SQL and created mysite for each user, now some of the users username has changed, is there any way I can rename a fba userprofile in sharepoint and ...
0
votes
1answer
42 views
How to input data to custom column in userprofile table when creating a new user
I have added a custom column to my user profile table that is called CoID (int).
When I want to create a new user I want to send the value 1 to CoID, but I am experiencing some trouble and cant get it ...
0
votes
0answers
17 views
Custom Membership Provider for multiple project
I'm implementing custom membership provide using default ASP.NET Membership provider.Now i have this problem.
In here 1 User Login.User allocated to Several projects,The problem is Users rights needs ...
0
votes
1answer
44 views
Why CustomRoleManager Initializer not run in Web API?
I created custom membership and custom role provider follow exact same this link:
for custom membership:
http://msdn.microsoft.com/en-us/library/6tc47t75(v=vs.100).aspx
more info:
...
2
votes
0answers
14 views
Different Log on screens depending on area - MVC3
I have an area that is a mobile layout. I then also have controllers in my route that just uses a normal website layout.
The problem is when i use [Authorize(Roles = "ROLENAME")] and the user isn't ...
0
votes
1answer
101 views
acessing username in web api controller when database table stores user as integer
Inside some web api controllers, I would like to access the User as indicated in this answer: http://stackoverflow.com/a/12705062/538962
sample code from answer...
[Authorize]
public ...
1
vote
0answers
128 views
MVC4 Simple Membership authentication with multiple databases or providers
I'm working on an MVC4 site using SimpleMembership to handle user accounts and role based authentication. We have another site and we'd like to implement a single sign on system allowing users from ...
0
votes
1answer
41 views
MVC [Authorize] Extension to only check an 'enabled' bit flag
I'm using EF code first and ASP.NET MVC 4. My users will sign in to the site exclusively with OAuth providers, not native accounts. I've got it working no problem, with a Users table as part of my ...
0
votes
1answer
46 views
How to consume Wcf rest servcie(Form authentication) from android client
I built a wcf rest service with form authentication. All the settings are set in config file. This service needs to be consumed by android client. So can any body please tell me how to send the ...
2
votes
4answers
172 views
Asp.net membership provider using ninject - call Initialize method
I am trying to implement a custom membership provider in an asp.net mvc 4 web application using ninject for dependency injection. Here is the code I have until now.
public interface ...
-4
votes
1answer
70 views
CREATE DATABASE permission denied in database 'master' [closed]
i am getting following error when i run my application on domain server. the application runs fine in local machine. Please help. Thanks in advance
CREATE DATABASE permission denied in database ...
0
votes
1answer
17 views
Is there is an easy way to restrict web page to certain users?
I have some pages that should only be used by admin personnel.
Apart from asp.net membership services, or creating my own bespoke login solution, is there any quick and simple techniques to restrict ...
0
votes
1answer
44 views
LDAP with Custom Membership Provider
I'm in a bit of a pickle here. I want to authenticate users through LDAP and automatically create accounts for users when they log in for the first time.
So far I've created a custom membership ...
0
votes
2answers
29 views
ASP.NET membership - login fails
I'm writing a web application, using ASP.NET MVC4 and SQL Azure.
I use forms authentication and the Membership library.
In production, the website runs from a web role service in Azure.
When I ...
0
votes
3answers
41 views
Getting userId of logged in user returns null
I am designing an ASP.net MVC4 application and I need to get the current user ID so that I'll save it in a table in my database as an owner id for a group.
This is the code I am using:
public ...
0
votes
1answer
37 views
how to add custom parameters to membership create user wizard?
I am really confused right now. Ive read some solutions to this problem, but every single one is different.... some people say that web applications projects and web site projects need different ...
0
votes
1answer
20 views
How to migrate Windows accounts to asp.net membership
I am working on an old ASP.NET application whose end users authenticate with a local Windows account (no domain). We want to switch to using membership (via aspnet_regsql), and move the application to ...
6
votes
1answer
46 views
MiniProfiler and SqlMembershipProvider
I am trying to get any DB queries that happen when using the SqlMembershipProvider to show in MiniProfiler but I can't think of any way to swap out the SqlConnection is uses with a ...
1
vote
1answer
50 views
ASP.NET MVC membership - user being logged out frequently - don't know why
I have an ASP.NET MVC 4 web application. Running locally, it works fine, but on the web host (which uses shared hosting), the logged on user is frequently logged out by being redirected back to the ...
0
votes
1answer
48 views
getting info from login control
I'm a student writing project for my degree and I'm trying to understand asp.net Membership and user management.
I read a lot of articles, some were handy but some just confused me.
after reading ...
-1
votes
2answers
40 views
How do I implement Customized User Membership Provider
I'm developing MVC 4 web application with C# in need of user privileges and roles. Currently, I created tables like this.
'privileges_table
PrivilegeID | PrivilegeName
1 | ...
0
votes
1answer
46 views
ActiveDirectoryMembershipProvider “A local error has occurred.”
I ran into an issue while trying to use LDAP authentication against our Netowrks NIDs in ASP.NET MVC4. I am using ASP.NET's built in ActiveDirectoryMembershipProvider that is designed for exactly ...
0
votes
1answer
22 views
ASP Membership Current user not taking the right value
i am using an ASP control Login and i want to redirect the user logged in depending on its role. But it seems like The User take the previous value of the last logged in user. seems problem of refresh ...
0
votes
2answers
234 views
MVC4 - Membership - SQL Server Compact 4.0 - Exception: Unable to find the requested .Net Framework Data Provider
The InitializeDatabaseConnection Method documentation says we can use the MVC 4 "Internet" template's generated membership functionality with SQLCE (SQL Server Compact 4.0 Local Database).
I've used ...
0
votes
0answers
59 views
Asp.net mvc membership always return false in `ValidateUser`
Question#1
I have my running site on mvc3 now i decided to make copy of that and create a new project after that i copy all logic which i want to move in Account Controller of new project now when i ...
0
votes
2answers
122 views
Getting the current user id (not name) using forms authentication?
Question:
I'm playing around with forms authentication and my own custom membership provider.
From what I see, I can get the current FormsIdentity by doing:
System.Web.Security.FormsIdentity ...
0
votes
0answers
23 views
Membership.OpenAuth with Twitter works but keeps asking to Authorize App
I am using ASP.NET forms (not MVC) along with their out of the box templated solution for logging using Facebook, Twitter, etc (all wrapped up in Microsoft.AspNet.Membership.OpenAuth).
Everything ...







