$(window).scroll(function() {
        if ( $(this).scrollTop() > 300){
            $('#gotop').fadeIn("fast");
        } else {
            $('#gotop').stop().fadeOut("fast");
        }
    });

amychang2014 發表在 痞客邦 留言(0) 人氣()

HtmlMeta tag =newHtmlMeta();
tag.Attributes.Add("property","og:title");
tag.Content="MyTitle";// don't HtmlEncode() string. HtmlMeta already escapes characters.
Page.Header.Controls.Add(tag);

amychang2014 發表在 痞客邦 留言(0) 人氣()

  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:

{C#} 資料庫取出Datetime,日期比大小

 
(DateTime.Compare(t1, t2) > 0) 指===> ("t1 > t2"); 

amychang2014 發表在 痞客邦 留言(0) 人氣()

http://mrcoles.com/blog/css-unminify/


amychang2014 發表在 痞客邦 留言(0) 人氣()

http://placehold.it/


amychang2014 發表在 痞客邦 留言(0) 人氣()

https://developers.google.com/maps/documentation/javascript/examples/geocoding-simple?hl=zh-tw

 

amychang2014 發表在 痞客邦 留言(0) 人氣()

<security>
   <ipSecurity allowUnlisted="true">    <!-- this line allows everybody, except those listed below -->            
       <clear/>     <!-- removes all upstream restrictions -->                
       <add ipAddress="83.116.19.53"/>     <!-- blocks the specific IP of 83.116.19.53  -->                
       <add ipAddress="83.116.119.0" subnetMask="255.255.255.0"/>     <!--blocks network 83.116.119.0 to 83.116.119.255-->                
       <add ipAddress="83.116.0.0" subnetMask="255.255.0.0"/>     <!--blocks network 83.116.0.0 to 83.116.255.255-->                
       <add ipAddress="83.0.0.0" subnetMask="255.0.0.0"/>     <!--blocks entire /8 network of 83.0.0.0 to 83.255.255.255-->                
   </ipSecurity>
</security>

amychang2014 發表在 痞客邦 留言(0) 人氣()

<sessionState mode="StateServer"
stateConnectionString="tcpip=localhost:42424"
cookieless="false" timeout="10"/>


amychang2014 發表在 痞客邦 留言(0) 人氣()

http://smallpoint-program.blogspot.tw/2013/04/javascript-javascripturl.html


amychang2014 發表在 痞客邦 留言(0) 人氣()