20120404 松羅湖

運氣真好,上山還放晴~

HTML 轉成 XML – 使用HtmlAgilityPack

在網路上找了很久,終於找到一個很棒的程式,
CodePlex 果然是個好寶庫,讚不絕口的東西很多,
不過還是要自己練習加工比較合用,
用VS2010做了一個範例,過些日子在來加工改良吧!

Read the rest of this entry »

showModalDialog 網頁做送出動作 (Submit/PostBack)

JavaScript 的window.showModalDialog語法,在網頁做送出動作(如Submit/PostBack)時,會另開新視窗,解決的方式是將 <base target=”_self”>加入<head>~</head>中間。

Read the rest of this entry »

JavaScript case的寫法

Javascript 的 Select Case用法:

var prgname = “”;
switch(Type)
{

case “LV”:
{

Read the rest of this entry »

winform 用拖拉方式 上傳檔案

  1. 將Form的 AllowDrop 屬性設為 true
  2. 在 Form 的 DragEnter 事件中
  3. e.Effect = DragDropEffects.Copy;
  4. 在Form的 DragDrop 事件中

Read the rest of this entry »

« Older Entries   Newer Entries »