css

2012年7月5日 星期四

asp中使用regular expression

 Dim RegEx
 Set RegEx = New regexp
 RegEx.Pattern = "[0-9]"
 RegEx.Global = True
 RegEx.IgnoreCase = True
     if  RegEx.Test(pass1) = FALSE then
         errmsg = errmsg & "<li>您設定的密碼必包含數字!</li>"
     end if    

    
Set RegEx = New regexp
RegEx.Pattern = "[a-z]"
RegEx.Global = True
RegEx.IgnoreCase = True
     if RegEx.Test(pass1) = FALSE then
        errmsg = errmsg & "<li>您設定的密碼必包含英文母!</li>"
     end if
Set RegEx = NOTHING

2012年7月4日 星期三

CSS Links

連結有四種狀態可以套用不同的屬性


  1.  a:link - 普通, 未瀏覽過的狀態
  2.  a:visited - 已瀏覽過的狀態
  3.  a:hover  - 滑鼠移到連結上
  4.  a:active -  點擊連結瞬間狀態
ex:


<style type="text/css">

a:link {color:#FF0000;} 

a:visited {color:#0300FA;}

a:hover {color:#FF91C7;background-color:#000000}

a:active {color:#8F19FF;background-color:#F7FA00}

</style>