List<string> lines = new List<string>(File.ReadAllLines("123.txt", Encoding.GetEncoding(936)));
lines.RemoveAt(1);

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

 <style>
        html, body,form { height: 100%; }

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

UPDATE from SELECT using SQL Server

http://stackoverflow.com/questions/2334712/update-...

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

https://www.dotblogs.com.tw/hatelove/archive/2010/...

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

http://www.jppinto.com/2009/04/automatically-redir...


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

.myButton {
-moz-box-shadow:inset 0px 1px 0px 0px #54a3f7;

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

.myButton {
-moz-box-shadow:inset 0px 1px 0px 0px #fff6af;

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

Server side

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

function isMobile() {
            try { document.createEvent("TouchEvent"); return true; }
            catch (e) { return false; }
        }

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

$(document).ready(function(){
    $('a').on('click touchend',function(e){var el = $(this);var link = el.attr('href');
        window.location = link;
});
});

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