2013年2月26日 星期二

Windows : xcopy (use Date)

xcopy[空格]"C:\test\*.*"[空格]"D:\back"[空格]/E/Y/D/H

由 C槽test資料夾 複製 D槽back資料夾

參數:
/E包含子目錄
/Y不要求確認
/D只複製比目的檔還新的檔案
/H複製隱藏檔和系統檔

----------------------------------------------------------------------------
資料夾使用日期(date)顯示

.bat 內容
D:\back\%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%\*.*

寫入動作為 (write)
D:\back\20130301\*.*

2013年2月18日 星期一

jQuery : ajax解決中文亂碼


$.ajax({
url: ' ',
dataType: 'html',
type:'POST',
async:false,
            // 解決中文亂碼
contentType: 'application/x-www-form-urlencoded;charset=UTF-8', 
data: {
           },            
error: function(xhr) {
},
success: function(response) {
             }
    });

JavaScript : showModalDialog與window.open造成session遺失


open 代表 window.open
modal 代表 window.showModalDialog

Y = session 還在
N = session 不見了
連續開窗使用方式 Session是否仍然存在
open/open/open Y/Y/Y
modal/modal/modal Y/Y/Y
open/modal/open Y/Y/N
modal/open/modal Y/N/N
open/modal/modal Y/Y/Y

Java : 使用http下載時 中文檔名無法顯示


java code :

String filename ="down.csv";
filename = new String(filename.getBytes("Big5"), "ISO8859_1" ) ;

SQL : row_number


SELECT * FROM
(
  select Date, IdNo ,DrFlag, Other
  row_number() over (PARTITION BY IdNo order by  DrFlag  desc , Other )  as RN   
  from TABLENAME
  where Date='20090901'
) TMP
WHERE RN=1 
ORDER BY IdNo

HTML : enctype屬性


enctype="data type"
data type為資料處理格式,用於送出資料的格式是否需要經過編碼等功能處理,一般可不用加此標籤
屬性預設值為 enctype="application/x-www-form-urlencoded" (大多被省略掉)
用於寄信(ACTION="Mailto:")時,屬性值應設為 enctype="text/plain"
用於上傳檔案(Type="file")時,屬性值應設為 enctype="multipart/form-data"

Css : CSS JavaScript轉換表

CSS 屬性 JavaScript
background background
background-attachment backgroundAttachment
background-color backgroundColor
background-image backgroundImage
background-position backgroundPosition
background-repeat backgroundRepeat
border