I have LinkButton on my page and they are causing validation each time I click one of them. I know that validationgroup property prevents validation on each postback. Unfortunatelly, I don’t see any validationgroup property for LinkButton. Is there any other way to get to same result?
Thanks for helping.
I have not clearly understand you question.
ValidationGroup is used to organize validation controls on a page as a set.For example If you want to perform validation on some controls on your web form then you assign the sameValidationGroupname to all the validation controls.Read the following post on MSDN it will clear your concept about ValidationGroups.
MSDN LINK
If you want to cancel the Validation performed on link Button then set its
CausesValidation property to false.