The alert box shown is a client-side feature that appears prior to posting
back. Your customvalidator most likely does not have any client-side code.
So it cannot contribute to the client-side message box. If you can, write
client-side code for your customvalidator. Otherwise, you will have to live
with this design.
--- Peter Blum
www.PeterBlum.com
Email:
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx
"Barbara Alderton" <> wrote in
message news:B986F2F1-C7D3-4440-9CFE-...
>I setup some standard Required Field Validation controls and one Custom
> validation control on an ASP.NET page (within a user control) to validate
> text entry. I also setup a Summary Control to post all the messages to a
> message box (ShowMessageBox=true). The required field validation error
> messages show up in the summary just fine but I can't get the custom
> validation message to show up if invalid.
>
> So far I have the summary control showing the required field errors and
> the
> custom validation message shows inline. In order to get that to work, I
> had
> to add code to my button control to not redirect to other page if
> page.isvalid = false. Is there anyway to get it to show up on the message
> box? Does it have anything to do with the fact that the messagebox is
> client
> side and the custom validation control is doing server side validation?
>
> Thanks,
> Barbara Alderton