2016年4月9日 星期六

取得input='File'所選取得檔案名稱

var files = $("#file1").get(0).files;
for (var i = 0; i < files.length; i++) {
alert("檔案名稱:" + files.item(i).name);
alert("檔案大小:" + files.item(i).size);
}

2015年10月24日 星期六

【CSS】DIV內元素置底


  • 第一層DIV設定

          position:relative;


  • 第二層DIV設定

          position:absolute;
          bottom:0px;
          right:0px;

2015年2月27日 星期五

出現錯誤【WebForms UnobtrusiveValidationMode 需要 'jquery' 的 ScriptResourceMapping。請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)。】

當網頁出現錯誤訊息為:

WebForms UnobtrusiveValidationMode 需要 'jquery' 的 ScriptResourceMapping。請加入 ScriptResourceMapping 命名的 jquery (區分大小寫)。

解決步驟:

在web.config 中加入
<appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>


參考來源:

1. http://chourain.blogspot.tw/2013/10/aspnet-45-40-webforms.html
2. http://www.codeproject.com/Articles/465613/WebForms-UnobtrusiveValidationMode-requires-a
3. http://www.allenkuo.com/GenericArticle/view1441.aspx

出現錯誤【網頁伺服器已設為不列出此目錄的內容。】【C#】

當網頁出現錯誤訊息為:

網頁伺服器已設為不列出此目錄的內容。


解決步驟:

1. 啟動IIS 管理員。若要這麼做,按一下 [開始]、 按一下 [執行],鍵入inetmgr.exe,,然後按一下[確定]

2. 在 [IIS 管理員] 中,展開server name、 展開 [網站],然後按一下您想要修改的網站。

3. 在 [功能] 檢視中,按兩下 [瀏覽目錄]

4. 在 [動作] 窗格中,按一下 [啟用]

依序執行完畢後,即可解決此問題。


參考來源:
1. http://ryan-dkim.blogspot.tw/2012/08/iis.html
2. http://support.microsoft.com/kb/942062/zh-tw

2014年9月10日 星期三

C# 控件:Login的使用

Login控件的使用,可參考下列網站:

http://www.dotblogs.com.tw/kevin8977/archive/2009/08/21/10166.aspx

錯誤訊息:名稱 'FormsAuthentication' 不存在於目前內容中

在製作登入機制時,加入↓↓↓↓↓↓

FormsAuthentication.RedirectFromLoginPage(Login1.UserName, true);

發生了錯誤訊息:【名稱 'FormsAuthentication' 不存在於目前內容中】

解決方法是加入use即可,


using System.Web.Security;
using System.Security.Cryptography;