studycomparevalidator.aspx

来自「该文件包括了WEB标单控件应用的所有实例代码」· ASPX 代码 · 共 23 行

ASPX
23
字号
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="studyCompareValidator.aspx.vb" Inherits="studyCompareValidator" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    Enter new password:
    <asp:TextBox  ID ="newpassword1" TextMode ="Password" runat ="server" ></asp:TextBox>
    <br />
    Re-enter new password:
    <asp:TextBox ID ="newpassword2" TextMode ="Password" runat ="server" ></asp:TextBox>
    <asp:CompareValidator ID ="valid1" runat ="server" ControlToValidate ="newpassword2" ControlToCompare ="newpassword1"
         ErrorMessage ="Both Passwords do not match,please re-enter"></asp:CompareValidator>
    <br /><br />
    <asp:Button  ID ="btnDone" Text ="Done" runat ="server" />
    </form>
</body>
</html>

⌨️ 快捷键说明

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