· Crystal translation · yesky
<! -- Login information -->
<Table border = 0 width = 600>
<Tr> <td colspan = 3>
<Table border = 0 cellpadding = 0 cellspacing = 0 width = "100%">
<Tr> <td>
<B> Logon Information </B>
</Td> </tr>
</Table>
</Td> </tr>
<Tr>
<Td align = right>
Email Address:
</Td>
<Td>
<Asp: TextBox id = email width = 200px maxlength = 60 runat = server/>
</Td>
<Td>
<Asp: RequiredFieldValidator id = "emailReqVal"
ControlToValidate = "email"
ErrorMessage = "Email address"
Display = "Dynamic"
Font-Name = ""
Font-Size = "12"
Runat = server>
*
</Asp: RequiredFieldValidator>
<Asp: CustomValidator id = "emailRegexVal" runat = "server"
ControlToValidate = "email"
ClientValidationFunction = "ClientValidateEmail"
Display = "Static"
Font-Name = ""
Font-Size = "12">
Invalid Email address
</Asp: CustomValidator>
</Td>
</Tr>
<Tr>
<Td align = right>
Password:
</Td>
<Td>
<Asp: TextBox id = passwd TextMode = "Password" maxlength = 20 runat = server/>
</Td>
<Td>
<Asp: RequiredFieldValidator id = "passwdReqVal"
ControlToValidate = "passwd"
ErrorMessage = "User Password"
Display = "Dynamic"
Font-Name = "" Font-Size = "12"
Runat = server>
*
</Asp: RequiredFieldValidator>
<Asp: RegularExpressionValidator id = "passwdRegexBal"
ControlToValidate = "passwd"
ValidationExpression = ".*[! @ # $ % ^ & * +;:]. *"
Display = "Static"
Font-Name = "" Font-Size = "12"
Width = "100%" runat = server>
The password must contain the following characters :(! @ # $ % ^ & * + ;:)
</Asp: RegularExpressionValidator>
</Td>
</Tr>
<Tr>