/ Published in: C#
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
protected void ValidEmail(object source, ServerValidateEventArgs args)
{
try
{
}
catch (Exception ex)
{
args.IsValid = false;
return;
}
args.IsValid = true;
}
Comments
 Subscribe to comments
                    Subscribe to comments
                
                