我正在尝试在MessageBox中显示我的验证摘要,它只是简单地工作。这就是我所拥有的。
<asp:ValidationSummary ID="ValidationSummary1" runat="server" Height="24px" Width="100%"ShowMessageBox="True" ShowSummary="False"></asp:ValidationSummary>
<tr>
<td align="right">
<asp:Label ID="Label2" runat="server" CssClass="label" Width="138px">* Serial Number</asp:Label>
</td>
<td>
<asp:TextBox ID="txtSerial" runat="server" ></asp:TextBox>
<asp:RequiredFieldValidator ID="valSerial" runat="server"
ControlToValidate="txtSerial" ErrorMessage="Serial number is required" >*</asp:RequiredFieldValidator>
</td>
<asp:Button ID="btnSubmit" runat="server" Text="Submit" Height="20px"></asp:Button>
我已经按照我在互联网上找到的每个指南,但我无法让它工作。 我错过了什么?谢谢!
答案 0 :(得分:0)
我回答了。我的网络配置中有<xhtmlConformance mode="Legacy" />
。这阻止了MessageBox的显示。