日期:2014-05-17 浏览次数:20617 次
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>无标题页</title> <style type="text/css"> .style1 { width: 100%; } .style2 { width: 630px; text-align: right; } </style> </head> <body> <form id="form1" runat="server"> <div> <asp:Panel ID="Panel1" runat="server"> <table class="style1"> <tr> <td> 1</td> </tr> <tr> <td style="text-align: center"> <asp:Button ID="Button1" runat="server" onclick="Button1_Click" style="text-align: left" Text="Button" /> </td> </tr> </table> </asp:Panel> <asp:Panel ID="Panel2" runat="server"> <table class="style1"> <tr> <td class="style2"> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </td> <td> <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="TextBox1" ErrorMessage="不能为空">*</asp:RequiredFieldValidator> <asp:CustomValidator ID="CustomValidator1" runat="server" ControlToValidate="TextBox1" Display="Dynamic" ErrorMessage="用户已存在" onservervalidate="CustomValidator1_ServerValidate">*</asp:CustomValidator> </td> </tr> <tr> <td class="style2"> </td> <td> </td> </tr> <tr> <td class="style2"> </td> <td> </td> </tr> <tr> <td colspan="2" style="text-align: center"> <asp:Button ID="Button2" runat="server" onclick="Button2_Click" Text="Button" /> </td> </tr> </table> </asp:Panel> <asp:Panel ID="Panel3" runat="server"> <table class="style1"> <tr> <td colspan="2"> 3</td> </tr> <tr>