The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
28 views

Setting up DefaultMembershipProvider on a WinForms APP

I've been trying to hook up a simple winforms app with the new DefaultMembershipProvider, but everything goes bonkers as soon as I use the Membership class, e.g.: Membership.ValidateUser("user", ...
0
votes
1answer
209 views

Cant configure MVC 4 SqlMembershipProvider

I am setting up my MVC 4 website to use SqlMembershipProvider with data store as SQL Server Express 11.0.21xx I have installed Universal Providers via NuGet PM > Install-Package ...
0
votes
1answer
25 views

ASP.NET MVC 3 SQLMembership Registration and EF 5 Database First

I have this table called Demographics that is related to the aspnet_Users table by the userId field. This Demographics table has about 20 fields that must inserted at the point that the user registers ...
0
votes
2answers
104 views

How do add/integrate SqlMembershipProvider in exiting MVC 3 project?

On creating a new MVC project, Visual Studio take cares of SqlMembershipProvider if it is a non-empty project. VisualS Studio creates a Database and all necessary Tables. But, I have an existing MVC ...
5
votes
3answers
346 views

ASP.NET MVC4 - When the same user ID is trying to log in on multiple devices, how do I kill the session on the other device?

What I want to do is to limit a user ID to only being able to log in to one device at a time. For example, user ID "abc" logs in to their computer. User ID "abc" now tries to log in from their ...
1
vote
0answers
51 views

ASP.NET Membership assigning Multiple Roles

I am trying to to assign a newly created user to the role 'Player.' I have 2 roles in total, 'Player' and 'Admin.' When I do the following code, the newly created user is being assigned both roles, ...
0
votes
2answers
32 views

What methods from SqlMembershipProvider set IsApproved to false?

I have come across a problem where one of my user's IsApproved flag has magically been set to false and I'm wondering how this may have happened. The user is not locked out due to failed password ...
1
vote
0answers
30 views

associating my own table to userProfile table in SqlMembership doesn't work as expected

I have this table named Person : FirstName,LastName,BirthDate,UserId(FK,int,not null) userId field is joint to userProfile table of SqlMembership and 2 other tables named Category and News besides ...
4
votes
1answer
120 views

Changing membership connection string

Iam new to asp.net membership & I need help to change its connection string programmatically. What I have tried till now is I have create a class project name Sample as namespace** and extends ...
5
votes
2answers
264 views

SqlMembershipProvider Membership.GetUser by name failing

The problem Membership.GetUser works fine if I use the GUID, but fails if I try it without parameters or with the name: //This works and adds records to aspnet_user & aspnet_Membership tables ...
0
votes
2answers
277 views

Encrypted passwords in asp.net SQLMembershipProvider and Umbraco membership provider

Security Noob here. I am trying to move from asp.net membership to Umbraco membership. But using passwordFormat="Encrypted" seems to encrypt differently between the Umbraco membership provider and ...
1
vote
2answers
278 views

Entity Framework: how to solve “FOREIGN KEY constraint may cause cycles or multiple cascade paths”?

there are lots of questions about this problem, but I couldn't solve my case. can some one please take a look at this: I have an Office table which has one-many relationship with Doctor and Secretary ...
0
votes
0answers
74 views

sqlmembershipProvider.ValidateUser returning null exception

I have a class that is derived from sqlmembershipprovider , when I'm trying to call base.ValidateUser it returns object not set to an instance of an object and I don't understand why.. Here is the ...
0
votes
2answers
210 views

How do I select user information with multiple databases using ASP & VB.NET?

Okay here it goes . . . I have a web application I am developing in Microsoft Visual Web Developer using ASP, VB.net, etc. that will allow "Sellers" to post ads for "Buyers" to view. When the Buyer ...
2
votes
3answers
167 views

SqlMembershipProvider not able to login with frames or iframes only in Internet Explorer

I am using SqlMembershipProvider with asp.net and it works fine until I try to use iframes or frames. When I login without them, I have no issues but if I wrap our website from our customer's site, ...
0
votes
1answer
47 views

SqlMembershipProvider Remember Password Time

Is there a way to set the remember password time for the SqlMembershipProvider? I'd like to set it to be 2 hours and then it drop the remember me option. Is that feasible?
1
vote
0answers
141 views

GeneratePasswordResetToken in AspNetSqlMembershipProvider

In SimpleMembershipProvider that comes with ASP.NET Razor it's possible to call GeneratePasswordResetToken, then email generated token to the user's email. Then, when the user clicks on the URL, it ...
1
vote
2answers
263 views

writing custom membership provider

i am writing the custom membership provider class by implementing System.Web.Security.membershipprovider. now my problem is while accessing the class i am getting error as error code : String ...
0
votes
2answers
147 views

How can I log/trap exceptions thrown by the ASP.NET SqlMembershipProvider?

I have a .NET 4 WebAPI app that's using the ASP.NET SqlMembershipProvider. When it works, it works fine - but if there's any problems connecting to the membership database, I just get a silent ...
0
votes
2answers
244 views

Displaying Member info including Roles using Sql Membership Provider

I wish to create a summary table of all users with the database tables setup according to SqlMembershipProvider schema. So far, I have: <asp:GridView ID="UserAccounts" runat="server" ...
0
votes
2answers
111 views

Pass values to overriden CreateUser method of SqlMemebership Provider in MVC

I am working with ASP.NET Membership Providers. I am using SqlMembership Provider, I have overriden the CreateUser class as shown below. As you can see I have a SportDetails fields which contains ...
0
votes
1answer
158 views

MVC4 application can not see any membership section

Just installed VS 2012(Ultimate) and created a MVC4 application. When I looked into web.config, I can not find any membership, role or profile providers sections. Curious to know where they are set. ...
0
votes
1answer
188 views

Call custom MembershipProvider without casting Membership.Provider

Is there a way to call the custom MembershipProvider I have implemented in code without having to cast the Membership class to my custom provider every time? For example, I setup my web.config like ...
1
vote
2answers
154 views

how to add properties to sql membership provider for registering users

I'm using sql membership provider and I'm wanting to add Shipping information when users register... The user is required to enter shipping info. What is the best way to approach this / how do I do it ...
0
votes
1answer
110 views

Membership Provider producing unexpected SQL Error

I am getting the following error when calling Membership.GetUser() on a specific page (first page on the site to do so as we implement proper security controls) System.Data.SqlClient.SqlException ...
0
votes
0answers
46 views

Membership provider for a large number of user

We're being asked to spec out a new web facing system that might see 500k users being registered per year. So far we have thought about using the SQL membership provider or add them all to an Active ...
0
votes
1answer
148 views

Successfully extend custom SQL Datatables with aspnet_Membership tables

I have an application which I created using MVC3 and Custom SQL Database with 3 tables: mm_Table1, mm_Table2, mm_Jobs I built out the MVC app with a JobsController and have the respective Views ...
2
votes
1answer
444 views

Configure ASP.NET SQL Membership Provider from Web Role setting

I have a Web Role that is using the ASP.NET SQL Membership provider. Currently the configuration is in the Web.Config file. I would like to configure the connection string as a Web Role setting ...
0
votes
1answer
105 views

custom membership provider asp.net

I have a website that is already built using the default aspnet membership provider. I am looking to expand it in order to slightly modify the functions. From my understanding, I would want to create ...
1
vote
0answers
69 views

Correct usage of SqlMembershipProvider Profiles

I am successfully reading and writing custom profile data for my users. However due to the way this profile data is stored in the database it is very difficult to bring back queries with any of these ...
1
vote
1answer
204 views

Why are commas not allowed in a username when using the SqlMembershipProvider?

Although NOT documented as a part of the CreateUser method on MSDN, the SqlMembershipProvider throws an ArgumentException if you try to do anything with a username containing a comma (including trying ...
0
votes
1answer
392 views

Where can HttpContext.User be set?

Environment: MVC3 SqlMemberShipProvider I added an empty public void Application_AuthenticateRequest(object sender, EventArgs e) {} in the MvcApplication class in Global.asax.cs and put a ...
0
votes
0answers
91 views

Errors on entity framework when using Membership.GetUser()

I'm using entity framework on my current MVC 3 project. I've recently added security using sqlmembership provider and uses Membership.GetUser() to get the id of the currently logged in user. The ...
5
votes
1answer
265 views

SqlMembership on both Azure and Standalone SQL Server

I'm working on an ASP.NET Web Forms application with SqlMembershipProvider. As it is running on Azure too, I use KB2006191 Updated ASP.NET scripts for use with SQL Azure for tables and SPs. ...
5
votes
2answers
308 views

Concurrency issues with multiple, independant database transactions?

How would you solve the concurrency issue with the following code? In this example, we'd like to know why the user failed authentication. The problem is that this code makes two separate calls to the ...
1
vote
1answer
320 views

ASP.NET Web Forms Custom Membership provider error

In my ASP.NET Web Forms app, I'm trying to create my own SQLMembershipProvider class, to override the ConnectionString at runtime. But I am getting a configuration error: "The type ...
1
vote
1answer
70 views

ASP.NET SQL Server Registration Tool Not Finding Any Databases

I am trying to use the ASP.NET SQL Server Registration Tool to setup my database for Membership Roles and ASP.NET Users however it cannot find any database when I clearly have one. I am using SQL ...
0
votes
1answer
108 views

create FK to model, from aspnet forms validation tables

I've recently created a MVC 3 ASP.net application (using VB). I have also created forms validation by running aspnet_regsql. I used this to create the table in the same database as my application ...
0
votes
0answers
110 views

Login stalls after first user has logged in

I am putting out a new version of my web site soon and have a problem with users logging in. Once one user logs in no other users can log in because the page just stalls after clicking the login ...
1
vote
1answer
206 views

Develop a .net custom membership provider for facebook

I have an mvc website that is using the asp.net membership database. I am wanting to enhance the website to allow users to use their facebook details to log into my site. I use the database for ...
4
votes
2answers
735 views

Multi Tenant SQLMembershipProvider ASP.NET MVC

I am trying to move to Azure (including SQL Azure) with a multi-tenanted ASP.NET MVC application. Each customer gets their own database which is self-contained, including all of their membership ...
2
votes
4answers
1k views

Membership CreateUser and related tables

I have just switch to .Net membership provider to manage my users. I have a table relating to the Users table called UserGroupDetails. I would like to add a row to this table when ...
1
vote
0answers
21 views

SQLASPMembershipProvider not connecting to Database

I have created a web app using the SQLASPMembership provider and and everything works fine off my development machine. However when I publish it out to the web server it fails to connect to the ...
0
votes
3answers
263 views

CustomSqlMembership throws server error intermittently

I've a asp.net MVC app deployed to server it uses forms authentication and uses CustomSqlMembership provider basically I've not changed anything in the SqlMembershipPRovider just copied the source ...
1
vote
1answer
526 views

using login controls with sql server (not express)

I installed Visual Studio 2008 Professional(updated with SP1), then I uninstalled SQL server 2005 Express and installed SQL Server 2005 Standard. now I am not able to add 'SQL Server Database' to ...
0
votes
1answer
59 views

Lost on membership provider

I'm confused in the proper time to use SQLMembershipProvider vs my own custom provider. I'm building a system where users can create accounts; and then create objects in our system. When a user logs ...
0
votes
1answer
302 views

Has anyone successfully integrated Yet Another Forum 1.9.x with an existing asp.net site?

I'd like to integrate Yet Another Forum (yafnet) into my asp.net website using the same membership provider as my current website - an out-of-the-box aspnet sqlmembership provider. Has anyone done ...
0
votes
2answers
528 views

Asp.net universal providers error

i have installed asp.net universal providers, but after changing the configuration i am getting error "EF Providers require MultipleActiveResultSets=True for System.Data.SqlClient connection strings" ...
0
votes
1answer
317 views

Use asp.net membership via LDAP

We have an intranet system that uses asp.net with the sql membership provider. We have about 400 users setup in the intranet. These can include employees, contractors, etc. I'm trying to find out ...
1
vote
2answers
940 views

What do the ASP.NET Universal Providers enable that the default sql providers don't?

Inside the readme file of the ASP.NET Universal providers NuGet package is this quote The SqlMembershipProvider, SqlRoleProvider, SqlProfileProvider classes that shipped in ASP.NET through version ...

1 2 3