2013年10月13日 星期日

CSS Maker

Menu
http://cssmenumaker.com/builder/971316

Rdbtn, Ckbox, dplist
http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/example/

DatePicker
http://jqueryui.com/datepicker/

button
http://www.cssbutton.me

2013年10月8日 星期二

Byte Save as Image Files

        byte[] FileBS;

        FileStream BFile = new FileStream(FileLC, FileMode.Create);
        BFile.Write(FileBS, 0, FileBS.GetUpperBound(0) + 1);
        BFile.Flush();
        BFile.Close();