Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Problem with creating users in my ASP.NET 2.0 website

Reply
Thread Tools

Problem with creating users in my ASP.NET 2.0 website

 
 
Jeff
Guest
Posts: n/a
 
      04-04-2007
ASP.NET 2.0

I created 3 users in my website. After creating these 3 users I wanted to
make the password less restrict so I added the settings below to my
web.config. (that means the 3 users where added when no membership settings
was in web.config - so I guess my website was using some default settings)

The problem is that now when a new user is created, it actually create 2
records in the aspnet_Users table. One record is associated with the
application name myNetwork, and the other is associated with application
name /

<membership>
<providers>
<remove name="AspNetSqlMembershipProvider" />
<add name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="LocalSqlServer"
minRequiredNonalphanumericCharacters="0"
applicationName="myNetwork"
requiresQuestionAndAnswer="true" />
</providers>
</membership>

Any suggestions?

Jeff


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with asp.net management application, creating users. =?Utf-8?B?Y2FkYTAzMTA=?= ASP .Net 0 11-22-2006 10:28 PM
How to Synchronize anonymous users with authenticated users using profiles? Rodusa ASP .Net 2 09-08-2005 08:12 PM
Attn: Panasonic FZ5 Users and Canon S1-IS Users measekite Digital Photography 17 05-27-2005 05:51 PM
Help me in making users/deleting users in active directory Sara rafiee ASP .Net 3 10-04-2004 01:35 PM
Reg. Listing Only Online Users in a Seperate JTree from the Total Users. Sunil Miriyala Java 0 03-01-2004 04:58 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57