Popular Posts
javax.net.ssl.SSLHandshakeException: Connection closed by peer in Android 5.0 Lollipop Recently, there is a error occurs when access website via ssl connection like below although it worked fine several days ago. // Enable SSL... Close window without confirm (I.E only) window.opener=null; window.open('','_self'); window.close(); focus on validating function focusOnInvalidControl() {     for (var i = 0; i < Page_Validators.length; i++) {         if (!Page_Validators[i].isvalid) {     ...
Stats
write
語法:
write at [/][<pos>][(<len>)] output
用法:
write 'Bruce'.                    " 輸出常數
Bruce
data CNAME(10) value 'James'.
write: / CNAME, 'is busy.'.       " 輸出變數, 多個值
James      is busy.
data NUM(10) value '0123456789'.
write / NUM.                      " 輸出變數
write /5 NUM.                     " 在位置5的地方輸出變數
write /(5) NUM.                   " 輸出5字元變數
write /5(5) NUM.                  " 在位置5的地方輸出5字元變數
0123456789  
     0123456789  
01234
     01234