Question : ASP.NET Membership minRequiredNonalphanumericCharacters Problem

I am using the ASP.NET Membership provider and am having an issue with creating new userids where the password is requiring Non Aplha Numberic characters.  In the web.confilg I have this parameter set to 0,  minRequiredNonalphanumericCharacters="0",  But it still is requiring a Non Aplha Numberic characters.  How do I turn this off, the client does not want this requirement.

Here is the whole membership config in my web.config:

<membership>
     <providers>
      <add connectionStringName="LocalSqlServer" applicationName="/"  
                      enablePasswordRetrieval="true" enablePasswordReset="true"
                      requiresQuestionAndAnswer="true" requiresUniqueEmail="true"
                      passwordFormat="Clear" maxInvalidPasswordAttempts="5"
                      passwordAttemptWindow="10" minRequiredPasswordLength="5"
                      minRequiredNonalphanumericCharacters="0"
                      name="MyMembershipProvider"
                      type="System.Web.Security.SqlMembershipProvider,
                      System.Web,&#xA;Version=2.0.0.0,
                      Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </providers>
</membership>

Answer : ASP.NET Membership minRequiredNonalphanumericCharacters Problem

sorry...this is
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
<?php
	include_once "connect_to_mysql.php";
	$sql = mysql_query("SELECT Full_Name, Current_Value FROM stock_index");
	
	$todayDate = $_POST['todayDate'];

	while ($fila = mysql_fetch_array($sql)) {
		$Full_Name = $fila['Full_Name'];
		$Current_Value = $fila['Current_Value'];

		$myFile = "indices/Transaction_History".$Full_Name.".txt";
		$fh = fopen($myFile, 'a') or die("can't open file");
		$stringData = "\n \n Date: $todayDate  \n Name: $Full_Name \n Value: $Current_Value";
		fwrite($fh, $stringData);
		fclose($fh);
	}

?>
Random Solutions  
 
programming4us programming4us