onclientclick="ClientSideClick(this)"
을 버튼에 추가하지 않으면 클라이언트 측 유효성 검사가 유효성 검사 요약과 함께 잘 작동합니다.업데이트 패널이있는 ASp.net webform 저장 버튼 이벤트가 발생하지 않습니다.
트리거를 추가하려고했지만 여전히 작동하지 않습니다. 유효성 검사가 실행되지 않아 양식이 제출되지 않습니다.
작동하기 위해 필요한 변경 이유 또는 변경 이유를 잘 모릅니다.
onclientclick="ClientSideClick(this)"
에서이 코드를 제거한 경우 제대로 작동하지만 사용자가 동일한 양식을 여러 번 제출하지 않도록 JS를 사용하여 유효성 검사를 트리거해야합니다.
페이지에서 다른 양식 요소를 제거하여 이해하기 쉽습니다.
<%@ Page Title="" Language="C#" MasterPageFile="SiteMain.Master" AutoEventWireup="true" CodeFile="ArticleDetails.aspx.cs" Inherits="ArticleDetails" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<!--- Code -HERE -->
<asp:Panel ID="Panel1" runat="server">
<asp:ValidationSummary ID="ValidationSummary1" runat="server" CssClass="validation-sum" ValidationGroup="vgCommentForm" />
<div class="cmt-fullname-w">
<asp:TextBox ID="txtcmtFullName" placeholder="Full Name" runat="server" CssClass="txt-cmt-fn" TabIndex="1"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Name can't be blank" CssClass="dp-cmt-validation" ControlToValidate="txtcmtFullName" ValidationGroup="vgCommentForm"></asp:RequiredFieldValidator>
</div>
<div class="cmt-email-w">
<asp:TextBox ID="txtcmtEmail" placeholder="Email" runat="server" CssClass="txt-cmt-fn" TabIndex="1"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="Email can't be blank" ControlToValidate="txtcmtEmail" CssClass="dp-cmt-validation" ValidationGroup="vgCommentForm"></asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ErrorMessage="Enter correct email" ControlToValidate="txtcmtEmail" CssClass="dp-cmt-validation" ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" ValidationGroup="vgCommentForm"></asp:RegularExpressionValidator>
</div>
<div class="cmt-btnsave-w">
<asp:Button ID="Button1" runat="server" CssClass="buttonPopups" OnClick="btnSaveComments_Click" OnClientClick="ClientSideClick(this)" Text="Post Comment" ValidationGroup="vgCommentForm" CausesValidation="true" UseSubmitBehavior="False" />
</div>
</asp:Panel>
<asp:Panel ID="Panel2" runat="server" Visible="false" CssClass="comment-pnl-success-w">
<div class="comment-success">Successfully submitted</div>
</asp:Panel>
<!--- Code -HERE -->
</ContentTemplate>
<%-- <Triggers>
<asp:PostBackTrigger ControlID="btnSaveComments" />
</Triggers>--%>
</asp:UpdatePanel>
<!--- UpdatePanel -->
<script type="text/javascript">
$(window).load(function() {
$("#dp-trans-comment").click(function() {
$('#commentModel').modal('show');
});
//Avoid Multiple Submission
function ClientSideClick(myButton) {
// Client side validation
if (typeof (Page_ClientValidate) == 'function') {
if (Page_ClientValidate("vgCommentForm") == false) {
return false;
}
}
//make sure the button is not of type "submit" but "button"
if (myButton.getAttribute('type') == 'button') {
// diable the button
myButton.disabled = true;
myButton.className = "btn btn-inactive";
myButton.value = "Please Wait..";
}
return true;
}
});
</script>
</asp:Content>
완벽한, 감사합니다. 그래서 당신은 어떻게 든이 기능을 수행하지 못합니다. – Learning
예, 함수 내의 함수를 찾을 수 없습니다. 또한'commentModel'이 UpdatePanel 안에 있다면, updatePanel이 트리거되었을 때 그것을 다시 바인딩 할 필요가 있습니다. 나는 이것을 나의 대답에 추가 할 것이다 – VDWWD
이것은 정말로 도움이된다. – Learning