發表文章

目前顯示的是 6月, 2009的文章

取得Html下拉式選單物件的內容

document.getElementById("drp開盤價").options[0].text; document.getElementById("drp開盤價").options[1].text; document.getElementById("drp開盤價").options[2].text; document.getElementById("drp開盤價").options[3].text;

利用同一條Connection連線執行多次Command命令

using (myConn = new SqlConnection(m_strConnectionString)) { myConn.Open(); using (SqlCommand myCommand1 = new SqlCommand(strSql, myConn)) { using (SqlDataAdapter myAdp = new SqlDataAdapter(myCommand1)) { ds = new DataSet(); myAdp.Fill(ds, "RichMoney"); this.GridView1.DataSource = ds; this.GridView1.DataBind(); //第一次運用 strSql = " select * from first "; myCommand1.CommandText = strSql; ds = new DataSet(); myAdp.Fill(ds, "RichMoney"); //第二次運用 strSql = " select * from second "; myCommand1.CommandText = strSql; ds1 = new DataSet(); myAdp.Fill(ds1, "RichMoney"); } } }

Visual Studio 2008 程式開發伺服器通訊埠與IE不一致

執行WebDebug的時候,突然頁面顯示著「網頁無法顯示」的頁面,之前一切正常,經過網路上查證,發現為NOD32防毒軟體的關係 依 進入NOD32的進階設定(F5),網址過濾,HTTP,瀏覽器,會看到一個列表你的devenv.exe應該在其中,雙擊前面的勾 (相當於去掉選中狀態),確定退出,停止一切運行的ASP.NET Development Server,在VS中打開並重新編譯運行你的Web程序」