我想验证电子邮件的字符串是否为非空字符串或空格。我试着把必需的和RegularExpressionValidator
的电子邮件,但它似乎不起作用。
试试这样的东西:
if (string.IsNullOrEmpty(thisString)) {
//code to execute
}