ASP.NET ListView Validation
I need to validate the email add开发者_如何学Pythonress that are semicolon separated using ListView.
e.g. abc@email.com;abded@email.com;dfds@dfd.com etc.
Is there any event that I can use on code behind as I can't seem to get it working..
Place a CustomValidator control. And handle its ServerValidate event.
Refer to How to: Validate with a Custom Function for ASP.NET Server Controls
精彩评论