2013-10-29 45 views
0

网络应用程序。通过此应用程序,用户可以添加一段时间的guestconnection。为此,我有一个打开模式对话框的按钮,用户可以添加访客。输入必须是名,姓,公司和时间。我使用验证控件和ValidationGroup。 Validationcontrols检查我是否忘记了一个输入,但如果我点击“添加”代码不运行。我试图简单地用DIV但相同的方法:我在asp.net应用程序中的验证错误是什么?

这里是我的aspx代码:

<div id="add"> 

        <div id="Div2" class="popupConfirmation" runat="server" style="width:350px; height:290px;"> 

          <div class="bodycontrol"> 
          <table> 
         <tr> 
          <td><asp:Label ID="Label3" runat="server" Text="Vorname"></asp:Label></td> 
          <td><asp:TextBox ID="TextBox1" runat="server" ValidationGroup="valid" ></asp:TextBox></td> 
          <td><asp:RequiredFieldValidator ID="RequiredFieldValidator1" ValidationGroup="valid" runat="server" ForeColor="red" ErrorMessage="*" ControlToValidate="TextBox1"></asp:RequiredFieldValidator></td> 
         </tr> 
         <tr> 
          <td><asp:Label ID="Label4" runat="server" Text="Nachname"></asp:Label></td> 
          <td><asp:TextBox ID="TextBox2" runat="server" ValidationGroup="valid"></asp:TextBox></td> 
          <td><asp:RequiredFieldValidator ID="RequiredFieldValidator2" ValidationGroup="valid" runat="server" ForeColor="red" ErrorMessage="*" ControlToValidate="TextBox2"></asp:RequiredFieldValidator></td> 
         </tr> 
         <tr> 
          <td><asp:Label ID="Label5" runat="server" Text="Firma"></asp:Label></td> 
          <td><asp:TextBox ID="TextBox3" runat="server" ValidationGroup="valid"></asp:TextBox></td> 
          <td><asp:RequiredFieldValidator ID="RequiredFieldValidator3" ValidationGroup="valid" runat="server" ForeColor="red" ErrorMessage="*" ControlToValidate="TextBox3"></asp:RequiredFieldValidator></td> 
         </tr> 
        </table> 
          <br /> 
          <table> 
         <tr> 
          <td><asp:LinkButton ID="LinkButton1" runat="server" class="GuestButtons" Text="Hinzufügen" ValidationGroup="valid" onclick="btn_GuestListViewAddDialog_YES_Click" ></asp:LinkButton></td> 
          <td><asp:LinkButton ID="LinkButton2" runat="server" class="GuestButtons" Text="Abbrechen" ValidationGroup="never"></asp:LinkButton></td> 
         </tr> 
        </table> 
          <br /> 
          <table> 
         <tr> 
          <td><asp:Label ID="Label10" runat="server" Text="*Bitte alle Felder ausfüllen"></asp:Label></td> 
         </tr> 
        </table> 
          </div> 

        </div>   

       </div> 

这里是我的C#代码:

protected void btn_GuestListViewAddDialog_YES_Click(object sender, EventArgs e) 
      { 
       if (Page.IsValid) //Here i make a breakpoit but it doesn't use this code :( 
       { 

    ...//here is my code 

} 

} 

这是我的脚本块,如果我点击linkbutton:

WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$lw_content$LinkButton1", "", true, "valid", "", false, true)) 

回答

1

如果你想在服务器端强制验证,你需要拨打Page.Validate()之前检查Page.IsValid

protected void btn_GuestListViewAddDialog_YES_Click(object sender, EventArgs e) 
{ 
    Page.Validate(); 
    if (Page.IsValid) 
    { 

LinkButton也必须有一个ValidationGroup,同样valid -group如果你想验证这组如果被点击的链接按钮或不同的组,如果你不想引发验证。

编辑:然而,Page.Validate应该是多余的,因为CausesValidationtrue默认为LinkButton,你还指定了它ValidationGroup。所以我很茫然。

+0

我添加Page.Validation()和我的LinkBut​​ton有一个validationGroup但它不工作:( – Tarasov

相关问题