拖个RegularExpressionValidator,然后选mail,你就能看到了

解决方案 »

  1.   

    patrn="^((\w)|[-]|[.])+@(((\w)|[-])+[.])+[a-z]{2,4}$"
      

  2.   

    ^((\w)|[-]|[.])+@(((\w)|[-])+[.])+[a-z]{2,4}$(\w)表示是字母?
    [-]表示什么意思呢?
    (((\w)|[-])+[.])表示有任意次的 字母,-,.吗?^,$又是什么意思?迷惑呀~~~~~~~
      

  3.   

    在MSDN联机文档的索引中输入"正则表达式"关键字,将相关的链接看一遍吧!
      

  4.   

    \w  数字或字母
    ^  ^后面的字符是字符串的头
    $  $前面的字符是字符串的尾...
    去MSDN联机文档好好看就是了.
      

  5.   

    go to http://www.regxlib.com/search.aspxenter "email" in the keyword textbox and click on search buttonthe following book is currently the best book on the et on Regular ExpressionsMastering Regular Expressions(2nd Edition) by Jeffrey E. F. FriedlChapter 9 .NET is freely downloadable at
    http://www.oreilly.com/catalog/regex2/