Validation in codebehind

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • TCORDON

    Validation in codebehind

    Is there a vay to validate a textbox.text to see if it is a valid email
    address in codebehind? Using
    VS2005

    Thanks


  • Siva M

    #2
    RE: Validation in codebehind

    You can use regular expressions (System.Text.Re gularExpression s.RegEx). Check
    out www.regexlib.com to pick a reg exp for email address validation.

    Hope this helps.

    "TCORDON" wrote:
    [color=blue]
    > Is there a vay to validate a textbox.text to see if it is a valid email
    > address in codebehind? Using
    > VS2005
    >
    > Thanks
    >
    >
    >[/color]

    Comment

    Working...