验证失败时,asp.net的ValidationSummery显示MessageBox 单击“项目表单”中的“保存”按钮后。
我担心跟随控制:
<asp:ValidationSummary ID="ValidationSummary1" ShowMessageBox="true" ValidationGroup="InfoCarrier" ShowSummary="false" HeaderText="Please fill the valid value in red marked field(s)." EnableClientScript="true" DisplayMode="BulletList" runat="server" />
我试图覆盖MessageBox,它显示验证失败时。实际上想要改变它显示的方式并应用一些自定义的jquery和css。
我已经覆盖警报,实际上已经相信它会在验证失败时作为消息框发出警报。但是无法收集。
我的尝试是这样的:
<script>
jQuery(document).ready(
window.alert=function(){
Managealert();//My Customised Function.
});
</scirpt>
请指导我如何覆盖由于ValidtionSummery而导致的消息框。
先谢谢合作。