程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 使用ASP.NET Atlas開發檢測密碼強度的自定義Behavior

使用ASP.NET Atlas開發檢測密碼強度的自定義Behavior

編輯:.NET實例教程
本文源於維生素C.Net的一篇文章利用數學方法來大大降低一個邏輯判斷實現的難度的例子。檢測代碼來自THIN的檢驗密碼強度的JS類。
  
  Atlas中提供了客戶端JavaScript強大的面向對象功能,這幾天看到了上述二位的帖子,覺得這個功能需求在日常開發中還是很常見的。晚上閒來無事,將上述功能封裝為Atlas中的Behavior,以方便重用。關於Atlas的Behavior,請參考:在ASP.Net Atlas中創建自定義的Behavior。
  
  按照在ASP.Net Atlas中創建自定義的Behavior這篇文章的五個自定義步驟,很容易寫出了這個Behavior。其中最重要的部分為檢驗密碼強度的算法,這裡我偷了個懶,只是簡單的將THIN的代碼完全Copy過來(兄弟不要罵我-_-b),有心的朋友可以將它重構成更“Atlas”的樣子。這個檢測函數將在每次用戶在相應的input中按鍵時被觸發:
  
  function keyPressHandler() {
  
   // you may refactor this part to make the code more 'Atlas like' :-)
   var PassWordStrength ={
   Level : ["高,實在是高","還行啦","靠,這樣也行"],
   LevelValue : [30,20,0],//強度值
   Factor : [1,2,5],//字符加數,分別為字母,數字,其它
   KindFactor : [0,0,10,20],//密碼含幾種組成的加數
   Regex : [/[a-zA-Z]/g,/\d/g,/[^a-zA-Z0-9]/g] //字符正則數字正則其它正則
   }
   PassWordStrength.StrengthValue = function(pwd)
   {
   var strengthValue = 0;
   var ComposedKind = 0;
   for(var i = 0 ; i < this.Regex.length;i++)
   {
   var chars = pwd.match(this.Regex[i]);
   if(chars != null)
   {
   strengthValue += chars.length * this.Factor[i];
   ComposedKind ++;
   }
   }
   strengthValue += this.KindFactor[ComposedKind];
   return strengthValue;
   }
   PassWordStrength.StrengthLevel = function(pwd)
   {
   var value = this.StrengthValue(pwd);
   for(var i = 0 ; i < this.LevelValue.length ; i ++)
   {
   if(value >= this.LevelValue[i] )
   return this.Level[i];
   }
   }
   // end of the refactoring section 
   $(_checkResultLabelID).innerHtml = PassWordStrength.StrengthLevel(this.control.element.value);
  }
  
  同時在這個Behavior中添加了屬性checkResultLabelID,用來指定顯示檢驗結果的Label:
  
  var _checkResultLabelID;
  this.get_checkResultLabelID = function() {
   return _checkResultLabelID;
  }
  this.set_checkResultLabelID = function(value) {
   if (_checkResultLabelID != value) {
   _checkResultLabelID = value;
   this.raisePropertyChanged('checkResultLabelID');
   }
  }
  
  您也可以很方便的添加一些更花哨的功能,例如對於不同強度的輸入,提示文字的背景顏色有所改變等。完整的源代碼請參考本文後面的下載。
  
  測試的步驟也很簡單,首先在ScriptManager中添加這個Behavior的引用:
  
  <atlas:ScriptManager runat="server" ID="ScriptManager1">
   <Scripts>
   <atlas:ScriptReference Path="PassWordStrengthCheckBehavior.JS" />
   </Scripts>
  </atlas:ScriptManager>
  
  然後在頁面上添加一個input,用來輸入密碼(演示程序中沒有設定type為passWord),和一個span,用來顯示檢驗結果:
  
  <div>
   Input a passWord:
   <input id="passWord" type="text" />
   <span id="result"></span>
  </div>
  
  最後,Atlas Script中將上面的input提升為Atlas控件,並加入我們剛剛寫好的Behavior:
  
  <script type="text/XML-script">
   <page xmlns:script="http://schemas.microsoft.com/XML-script/2005">
   <components>
   <textBox id="passWord">
   <behaviors>
   <passWordStrengthCheckBehavior checkResultLabelID="result" />
   </behaviors>
   </textBox>
   </components>
   </page>
  </script>
  
  就是這麼簡單,浏覽器中如下:
  
  簡單密碼:
  


  中等密碼:
  
  
  
  復雜密碼:
  
  
  
  源代碼以及示例程序可以在此下載:http://www.cnblogs.com/Files/dflying/PassWordStrengthCheckBehaviorDemo.zip

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved