Click here to Skip to main content
15,914,070 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Java Script MessageBox and confirmation Box using ASP.NET with C# Pin
pragya_chaubisa26-Dec-08 0:05
pragya_chaubisa26-Dec-08 0:05 
GeneralRe: Java Script MessageBox and confirmation Box using ASP.NET with C# Pin
Brij26-Dec-08 0:50
mentorBrij26-Dec-08 0:50 
AnswerRe: Java Script MessageBox and confirmation Box using ASP.NET with C# Pin
koolprasad200325-Dec-08 23:34
professionalkoolprasad200325-Dec-08 23:34 
Questionhow to display sticky posts in a forum( in a DBgrid) Pin
pragya_chaubisa25-Dec-08 18:28
pragya_chaubisa25-Dec-08 18:28 
AnswerRe: how to display sticky posts in a forum( in a DBgrid) Pin
Brij25-Dec-08 19:05
mentorBrij25-Dec-08 19:05 
QuestionCan't access classes/objects? Pin
Arcdigital25-Dec-08 18:19
Arcdigital25-Dec-08 18:19 
AnswerRe: Can't access classes/objects? Pin
Brij25-Dec-08 19:00
mentorBrij25-Dec-08 19:00 
GeneralRe: Can't access classes/objects? Pin
Arcdigital26-Dec-08 2:50
Arcdigital26-Dec-08 2:50 
AnswerRe: Can't access classes/objects? Pin
Abhijit Jana25-Dec-08 19:06
professionalAbhijit Jana25-Dec-08 19:06 
QuestionFollow up on a previous post regarding the CSV files processing using Microsoft.VisualBasic.FileIO.TextFieldParser class Pin
Tina P25-Dec-08 16:52
Tina P25-Dec-08 16:52 
AnswerRe: Follow up on a previous post regarding the CSV files processing using Microsoft.VisualBasic.FileIO.TextFieldParser class Pin
N a v a n e e t h25-Dec-08 17:41
N a v a n e e t h25-Dec-08 17:41 
Questionlogin controls Pin
valli rajya lakshmi25-Dec-08 8:46
valli rajya lakshmi25-Dec-08 8:46 
AnswerRe: login controls Pin
Lars Brandt Stisen25-Dec-08 9:37
Lars Brandt Stisen25-Dec-08 9:37 
GeneralRe: login controls Pin
valli rajya lakshmi25-Dec-08 12:28
valli rajya lakshmi25-Dec-08 12:28 
GeneralRe: login controls Pin
Lars Brandt Stisen25-Dec-08 13:56
Lars Brandt Stisen25-Dec-08 13:56 
You need to override the default complexity requirement (residing in the machine.config) by adding the following code to your web.config file. Then change the values to fit your preferences:

<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"
                  enablePasswordRetrieval="false"
                  enablePasswordReset="true"
                  requiresQuestionAndAnswer="true"
                  applicationName="/"
                  requiresUniqueEmail="false"
                  minRequiredPasswordLength="7"
                  minRequiredNonalphanumericCharacters="1"
                  passwordFormat="Hashed"
                  maxInvalidPasswordAttempts="5"
                  passwordAttemptWindow="10"
                  passwordStrengthRegularExpression="" />
      </providers>
</membership>


Lars Brandt MCP/C#

GeneralRe: login controls Pin
valli rajya lakshmi26-Dec-08 10:26
valli rajya lakshmi26-Dec-08 10:26 
QuestionWeb user Control Problem Pin
cmpemikail25-Dec-08 7:16
cmpemikail25-Dec-08 7:16 
AnswerRe: Web user Control Problem Pin
Christian Graus25-Dec-08 11:41
protectorChristian Graus25-Dec-08 11:41 
QuestionXML serialization web service - passing objects Pin
mhp13025-Dec-08 6:47
mhp13025-Dec-08 6:47 
AnswerRe: XML serialization web service - passing objects Pin
mhp13025-Dec-08 9:09
mhp13025-Dec-08 9:09 
QuestionSession or Viewstate Pin
Nishant Singh25-Dec-08 2:02
Nishant Singh25-Dec-08 2:02 
AnswerRe: Session or Viewstate Pin
Abhijit Jana25-Dec-08 2:07
professionalAbhijit Jana25-Dec-08 2:07 
GeneralRe: Session or Viewstate Pin
Nishant Singh25-Dec-08 2:19
Nishant Singh25-Dec-08 2:19 
AnswerRe: Session or Viewstate Pin
Christian Graus25-Dec-08 14:50
protectorChristian Graus25-Dec-08 14:50 
AnswerRe: Session or Viewstate Pin
Aman Bhullar25-Dec-08 18:15
Aman Bhullar25-Dec-08 18:15 

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.