[摘要]( userName.Length > 15 ) ) System.Diagnostics.Trace.WriteLine( "[ValidateUser] Input vali...
( userName.Length > 15 ) )
{
System.Diagnostics.Trace.WriteLine( "[ValidateUser] Input validation of userName failed." );
return false;
}
// Check for invalid passWord.
// passWord must not be null and must be between 1 and 25 characters.
if ( ( null == passWord )
关键词:在ASP.NET中如何用C#.NET完成基于表单的验证