您好,登錄后才能下訂單哦!
本篇文章為大家展示了asp.net中如何使用數(shù)據(jù)驗(yàn)證控件,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
1、非空數(shù)據(jù)驗(yàn)證控件RequiredFiledValidator。
屬性:ControlToValiata 指驗(yàn)證控件對(duì)哪一個(gè)控件進(jìn)行驗(yàn)證。例如驗(yàn)證TextBox控件的ID屬性txtPwd,只要將RequiredFiledValidator。控件的ControlToValidata屬性設(shè)置為txtPwd。代碼:this.RequiredFiledValidator1.ControlToValidata="txtPwd";
ErrorMessage屬性:用于指定頁(yè)面中使用RequiredFiledValidator控件時(shí)顯示的錯(cuò)誤消息文本。代碼:this.RequeiredFiledValidator1.ErrorMessage=“*”;
2、數(shù)據(jù)比較驗(yàn)證控件
CompareValidator:
重要屬性:ControlToCompare 指定要對(duì)其進(jìn)行值比較的控件ID。例如驗(yàn)證兩次ID。
this.compareValidator1.ControlToCompare="txtPwd";
this.compareValidator1.ControlToValidate=""txtRepwd:
Operator屬性:進(jìn)行驗(yàn)證時(shí)進(jìn)行的操作。例如驗(yàn)證輸入密碼和再次輸入密碼是否一致。
this.CompareValidator1.OPerator=ValidationCompareOperator.Equal;
Type屬性:指定要進(jìn)行比較的兩個(gè)值的數(shù)據(jù)類(lèi)型;例如驗(yàn)證兩者的數(shù)據(jù)類(lèi)型
this.。。Type=ValidationDataType.String;
ValueToCompare屬性:指定要比較的值。
<title>數(shù)據(jù)驗(yàn)證技術(shù)</title> </head> <body> <form id="form1" runat="server"> <div> <h3>數(shù)據(jù)驗(yàn)證技術(shù)</h3> <h4>非空數(shù)據(jù)驗(yàn)證</h4> <div > <asp:Label ID="lab" Text="用戶(hù)信息" runat ="server" ></asp:Label ><br /><br /> <asp:Label ID="Name" Text ="姓名:" runat ="server" ></asp:Label> <asp:TextBox ID="txtName" runat="server" ></asp:TextBox> <asp:RequiredFieldValidator ID="RedFile" runat ="server" ControlToValidate ="txtName" SetFocusOnError ="true" ErrorMessage ="姓名不能為空" ></asp:RequiredFieldValidator><br /><br /><br /> <asp:Button ID="btOK" runat="server" Text="驗(yàn)證" OnClick="btOK_Click" /> </div> </div> <div> <hr /> <h4>數(shù)據(jù)比較控件驗(yàn)證</h4> <var> <asp:Label ID="LabTxt" runat="server" Text="用戶(hù)信息" BorderStyle ="NotSet"></asp:Label><br /> </var> <asp:Label ID="lab2" runat="server" Text="姓名:"></asp:Label> <asp:TextBox ID="lab3" runat ="server" ></asp:TextBox> <asp:RequiredFieldValidator ID="RequFlie2" runat="server" ErrorMessage ="姓名不能為空" SetFocusOnError ="true" ControlToValidate ="txtName"></asp:RequiredFieldValidator><br /><br /> <asp:Label ID ="lab4" runat="server" Text ="密碼:" ></asp:Label> <asp:TextBox ID="txtPwd" runat ="server" TextMode="Password" ></asp:TextBox><br /><br /> <asp:Label ID ="lab5" runat="server" Text ="確認(rèn)密碼:"></asp:Label> <asp:TextBox ID="txtRepwd" runat ="server" TextMode ="Password" ></asp:TextBox> <asp:CompareValidator ID="Comval" runat ="server" ControlToValidate ="txtRepwd" ControlToCompare ="txtPwd" ErrorMessage="確認(rèn)密碼與原密碼不匹配"></asp:CompareValidator><br /><br /> <asp:Button ID="btnCheck" runat ="server" Text ="驗(yàn)證2" OnClick="btnCheck_Click" /> </div> </form>
3、數(shù)據(jù)類(lèi)型驗(yàn)證控件
CompareValidator對(duì)照特定的數(shù)據(jù)類(lèi)型驗(yàn)證用戶(hù)的輸入,以確保用戶(hù)輸入的是數(shù)字還是日期等。
例:用到的控件屬性,CotrolToValidator、operator、type屬性。驗(yàn)證用戶(hù)輸入的出生日期與類(lèi)型是否匹配。
關(guān)于JQuery的淡入淡出效果的演示。。
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>jquery動(dòng)態(tài)</title> <script src=""> </script> <script type="text/javascript" > $(function(){ $(".nav li").hover(function(){ $("ul",this ).fadeIn(); }, function(){ $("ul") }) $) </script> <meta charset="utf-8" /> <style type="text/css" > body{ font-family :Arial ,sans-serif; font-size:15px; } .nav{ margin:0; padding:0; list-style:none ; } .nav li { float :left ; width:150px; position :relative ; } .nav li a{ background:#262626; color:#fff; display :block ; padding :8px 7px 8px 7px; text-decoration:none ; text-align :center ; text-transform :uppercase ;//小寫(xiě)變大寫(xiě) } .nav li a:hover { color:#bf3826; } .nav ul{ position :absolute ; left:0px; display:none ; margin: 0 0 0 -1px; padding :0; list-style:none ; border-bottom :3px solid #bf3826; } .nav ul li{ width:180px; float :left ; border-top :none ; } .nav ul a{ display :block ; height :15px; padding: 8px 7px 8px 7px; color :#fff; text-decoration :none ; border-top:none ; border-bottom:1px dashed #bf3826; } </style> </head> <body> <div > <ul class=" nav"> <li><a href=" #">Home</a></li> <li> <a href="#">ipnoe</a> </li> </ul </div> </body> </html>
上述內(nèi)容就是asp.net中如何使用數(shù)據(jù)驗(yàn)證控件,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。