- Nov 11 Wed 2020 10:54
-
[程式] Bootstrap Dropdown Menu 下拉選單/下彈選單
- Jul 27 Mon 2015 13:54
-
[程式] CSS-設定中文字體時,編碼後為亂碼

.pagetitle
{
font-family:標楷體;
font-size:16pt;
font-weight:bolder;
text-align:center;
margin-bottom: 10px;
}
- Aug 29 Fri 2014 16:25
-
[程式] CSS-選單收合或展開
- Aug 08 Fri 2014 14:34
-
[程式] ashx 中使用 session for C#
如果在 ashx 裡面直接使用 session["acc"].tostring(),
會出現「編譯器錯誤訊息: CS0103: 名稱 'Session' 不存在於目前內容中」,
使用 HttpContext.Current.Session["acc"].tostring(),
則會出現「例外詳細資訊: System.NullReferenceException: 並未將物件參考設定為物件的執行個體」
這個時候需要在 class 名稱後面加上 「 , System.Web.SessionState.IRequiresSessionState」
public class S_0_2014F : IHttpHandler , System.Web.SessionState.IRequiresSessionState
{
//內容
public void ProcessRequest(HttpContext context)
{
string vTmp = context.Session["acc"].ToString();
}
public bool IsReusable {
get {
return false;
}
}
}
會出現「編譯器錯誤訊息: CS0103: 名稱 'Session' 不存在於目前內容中」,
使用 HttpContext.Current.Session["acc"].tostring(),
則會出現「例外詳細資訊: System.NullReferenceException: 並未將物件參考設定為物件的執行個體」
這個時候需要在 class 名稱後面加上 「 , System.Web.SessionState.IRequiresSessionState」
public class S_0_2014F : IHttpHandler , System.Web.SessionState.IRequiresSessionState
{
//內容
public void ProcessRequest(HttpContext context)
{
string vTmp = context.Session["acc"].ToString();
}
public bool IsReusable {
get {
return false;
}
}
}
- Aug 04 Mon 2014 10:23
-
[程式] Javascript 取網址等資訊及參數
- Jun 21 Fri 2013 12:07
-
[程式] How to use the jQuery-ui datepicker?
- Apr 25 Thu 2013 14:29
-
[程式] 網頁-Viewport設定
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
- Apr 18 Thu 2013 15:56
-
[程式] 網頁-利用純 CSS 製作 radio 動態效果
- Apr 13 Fri 2012 17:06
-
[程式] ASP--在 IIS 7 中顯示詳細的錯誤訊息
剛剛把 IIS 7 裝好,寫了一個簡單的連接DB的程式,結果run起來,發現網頁顯示:
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
An error occurred on the server when processing the URL. Please contact the system administrator.
If you are the system administrator please click here to find out more about this error.
- Oct 04 Tue 2011 11:14
-
[程式] 網頁程式 - SlideMenu 滑動選單(使用javascript + css)

本文引用自此 【卜維丰】HTML / CSS / JavaScript - Javascript 滑動目錄 SlideMenu
日前正在製作滑動的menu選單,
參考了這篇文章,並且下載了範例回來做研究,
- Sep 25 Fri 2009 09:24
-
[程式] php - 將smarty輸出的網頁mail寄出
- Sep 03 Thu 2009 18:18
-
[程式] md5加密的破解方式
本文引用自此 - 你以為你的密碼很安全嗎?md5加密的破解方式
小遊戲區
小孟上菜
所有食記


About Me
Photo
Guestbook