⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exercise1a.aspx

📁 asp入门到精通的源代码
💻 ASPX
字号:
<html><body>
   <form runat="server">
      <asp:ListBox id="lb1" runat="server" >
         <asp:ListItem>Red</asp:ListItem>
         <asp:ListItem>Green</asp:ListItem>
         <asp:ListItem>Blue</asp:ListItem>
         <asp:ListItem>Brown</asp:ListItem>
      </asp:ListBox>
      
      <asp:ListBox id="lb2" runat="server" >
         <asp:ListItem>Red</asp:ListItem>
         <asp:ListItem>Green</asp:ListItem>
         <asp:ListItem>Blue</asp:ListItem>
         <asp:ListItem>Brown</asp:ListItem>
      </asp:ListBox>
      <p>
      <asp:CompareValidator runat="server"
         ControlToValidate="lb1"
         ControlToCompare="lb2"
         Operator="Equal"
         ErrorMessage="The selected values are not equal!" />
      
   </form>
</body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -