简体   繁体   中英

ASP.NET - Single ValidationSummary for multiple validation groups - How to?

I have a Masterpage with a ValidationSummary.

I need to use at least two different validation groups on a subpage since I have two actions (buttons). I would like the validation messages to be shown in the validation summary on the master page. This is not possible as far as I know since the ValidationSummary is only able to display validation summary messages from one validation group.

I'm wondering what would be the best way to achieve this.

I thought of creating a custom Validation Summary which could accept a list of ValidationGroups to display messages from.

Any good ideas how to do this ?

I actually solved this by accident one day. Do not put a ValidationGroup on your button, set CausesValidation to False and then register a OnClientClick() function that looks like this:

<asp:Button runat="server" ID="btnRequest" Text="Save" OnClientClick="Validate2('ValidationGroup')" CausesValidation="False"/>

function Validate2(valgrp) {
    var isValid = false;
    isValid = Page_ClientValidate(valgrp);
    ValidatorUpdateIsValid();
    ValidationSummaryOnSubmit(null);
    return isValid;
}

You can call this multiple times Page_ClientValidate(valgrp); inside the javascript

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM