Click here to Skip to main content
15,921,028 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP .NET Web Host Pin
SSLaks14-Mar-08 8:01
SSLaks14-Mar-08 8:01 
GeneralRe: ASP .NET Web Host Pin
Not Active14-Mar-08 10:23
mentorNot Active14-Mar-08 10:23 
Question[Message Deleted] Pin
R_L_H14-Mar-08 6:04
R_L_H14-Mar-08 6:04 
GeneralRe: How can I count each time a file is downloaded in asp.net? Pin
Mark J. Miller14-Mar-08 6:34
Mark J. Miller14-Mar-08 6:34 
General[Message Deleted] Pin
R_L_H14-Mar-08 6:51
R_L_H14-Mar-08 6:51 
GeneralRe: How can I count each time a file is downloaded in asp.net? Pin
Mark J. Miller14-Mar-08 7:10
Mark J. Miller14-Mar-08 7:10 
GeneralColumn Header and Row Header needed...Please Help Pin
codingrocks14-Mar-08 5:17
codingrocks14-Mar-08 5:17 
GeneralAspNetSqlMembershipProvider Question Pin
Clayton Q.14-Mar-08 5:16
Clayton Q.14-Mar-08 5:16 
Hi guys. I used AspNetSqlMembershipProvider to create the membership system for one of my sites. It isn't working consistently. I'd like to change some of the settings I originally chose in my web.config. I'm worried that if I do this it will screw up the accounts that have already been created. I need advice about the best way to go about this.

Currently, I have this:
<membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="15">
<providers>
<remove name="AspNetSqlMembershipProvider" />
<add name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
applicationName="/"
requiresUniqueEmail="true"
passwordFormat="Hashed"
minRequiredNonalphanumericCharacters="0"
maxInvalidPasswordAttempts="4"
passwordAttemptWindow="10" />
</providers>
</membership>

I'd like to change it to this:
<membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="15">
<providers>
<remove name="AspNetSqlMembershipProvider" />
<add name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer"
enablePasswordRetrieval="true"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
applicationName="/"
requiresUniqueEmail="true"
passwordFormat="Clear"
minRequiredNonalphanumericCharacters="0"
maxInvalidPasswordAttempts="4"
passwordAttemptWindow="10" />
</providers>
</membership>

I'm worried that changing from hashed passwords to clear passwords and getting rid of require question and answer now that 100 or so users have already signed up will hose all the previous accounts and make it impossible for them to log in.

The reason I'm doing this is that users are complaining about intermittent problems with my CreateAccount, RecoverPassword, and ChangePassword controls, which are set up with default controls. I haven't done anything fancy that should screw them up. I feel like the most exotic part is the portion of the web.config I shared with you. I feel like if I make that less complicated it might solve all my problems. But I'm scared it will screw up existing accounts.

Thoughts? Ideas?

Thanks!
GeneralRe: AspNetSqlMembershipProvider Question Pin
eyeseetee14-Mar-08 5:19
eyeseetee14-Mar-08 5:19 
GeneralRe: AspNetSqlMembershipProvider Question Pin
Clayton Q.14-Mar-08 5:30
Clayton Q.14-Mar-08 5:30 
GeneralRe: AspNetSqlMembershipProvider Question Pin
Clayton Q.16-Mar-08 12:36
Clayton Q.16-Mar-08 12:36 
QuestionLooking for example of a drop down box for a one to many table relationship. Pin
ironhide197514-Mar-08 2:59
ironhide197514-Mar-08 2:59 
GeneralRe: Looking for example of a drop down box for a one to many table relationship. Pin
eyeseetee14-Mar-08 4:16
eyeseetee14-Mar-08 4:16 
QuestionAVOID DUPLICATION IN DATABASE and PROGRAM! Pin
John Sundar14-Mar-08 1:38
John Sundar14-Mar-08 1:38 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! Pin
Not Active14-Mar-08 3:07
mentorNot Active14-Mar-08 3:07 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! [modified] Pin
John Sundar14-Mar-08 3:26
John Sundar14-Mar-08 3:26 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! Pin
Not Active14-Mar-08 3:37
mentorNot Active14-Mar-08 3:37 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! Pin
John Sundar14-Mar-08 3:53
John Sundar14-Mar-08 3:53 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! Pin
Not Active14-Mar-08 4:09
mentorNot Active14-Mar-08 4:09 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! [modified] Pin
John Sundar14-Mar-08 4:18
John Sundar14-Mar-08 4:18 
GeneralRe: AVOID DUPLICATION IN DATABASE and PROGRAM! Pin
Not Active14-Mar-08 4:42
mentorNot Active14-Mar-08 4:42 
QuestionHow to give both Bold & Italic fontstyle to ont font Pin
Trishul Tandel14-Mar-08 0:31
Trishul Tandel14-Mar-08 0:31 
AnswerRe: How to give both Bold & Italic fontstyle to ont font Pin
soni uma14-Mar-08 0:34
soni uma14-Mar-08 0:34 
GeneralRe: How to give both Bold & Italic fontstyle to ont font Pin
Trishul Tandel14-Mar-08 0:53
Trishul Tandel14-Mar-08 0:53 
Questiononline examination using asp.net Pin
Member 461912814-Mar-08 0:22
Member 461912814-Mar-08 0:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.