Posted By: MetaGunny | Jun 6th, 2007 @ 12:32 PM
page 1 of 1
Comments: 1 | Views: 1919
I can't find any methods or properties to exclude a validator from being included in the validation summary.  Anyone know how to do this?  I'm thinking about writing my own validation summary in a sense to get around this, but though I'd check to see if there is a built-in method.

I want to have a red asterisk next to the textbox that has the error, and then the error message in the validation summary.

If i understand your problem, you have some validators in a page and just some of them should show their validation message in the validation summary...

You can use the ValidationGroup property. Define it in the validation summary and in the validators you want to show the error messages.

<asp:RequiredFieldValidator ... ValidationGroup="group1">*</asp:RequiredFieldValidator> // 1
<asp:RequiredFieldValidator ... ValidationGroup="group2">*</asp:RequiredFieldValidator> // 2

<asp:ValidationSummary ... ValidationGroup="group1" />

In this case, only the validator 1 error message will be shown in the validation summary.

Hope this solves your problem Smiley

(sorry about my english...i'm portuguese Wink )

page 1 of 1
Comments: 1 | Views: 1919
Microsoft Communities