asp.net - Repeater Item Command Causes Validation -


i seem have bit of bug, have asp.net repeater control link buttons in , link button has have causes validation property set false.

however; when clicking makes panel visible on web page, asp.net required field validator controls trigger , shows error messages. on controls have validator controls on.

any ideas might cause ignoring causes validation property set false?

on opinion, should set different validationgroup properties values repeater control , control source required field validator. possible container repeat control has raised event can heared required field validator.

if mentioned above cannot try disable client validation requiredfieldvalidator using enableclientscript="false" it. , activate requiredfieldvalidator when usefull. example in button event handler can apply such code:

mybutton.validate(); if (mybutton.isvalid) {     want... } 

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -