示例#1
0
 private bool FormatoValidoCampo(string sDescricaoCampo, string sFormatoCampo,
   HlpWebTextBox campo)
 {
     bool bRetorno = campo.ValorValido();
     if (!bRetorno)
     {
         MessageHLP.ShowPopUpMsg("O campo '" + sDescricaoCampo +
             "' deve ser preenchido no formato '" + sFormatoCampo + "'", this.Page);
     }
     return bRetorno;
 }