http://www.runoob.com/jquery/jquery-plugin-validate.html
http://www.cnblogs.com/liuhongfeng/p/5150389.html
2018年2月21日 星期三
2018年2月9日 星期五
利用jquery $.getJSON 於vs時出現HTTP 錯誤 404.3
需在web.config中加入
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>
完整於web.config內容如下
<?xml version="1.0"?> <configuration> <system.web> <compilation debug="true" targetFramework="4.0"/> </system.web> <system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="application/json" /> </staticContent> </system.webServer> </configuration>
2016年8月27日 星期六
2015年12月16日 星期三
[Asp.net]ViewState & Session
ViewState
l 僅給目前網頁(.aspx)使用
l 透過『隱藏欄位』傳送資料,所以在”Page的PreRenderComplete事件”前可以對ViewState進行變更。
l 如何判斷ViewState是否存在
If(ViewState[“變數名稱”] != null){
//確定 ViewState裡面有數值,才執行這段程式
}
l ViewState缺點
會增加網頁大小。
Session
2015年5月9日 星期六
2015年4月11日 星期六
訂閱:
文章 (Atom)
讓ASP.NET網站在開發除錯時期擁有WEB.CONFIG文件轉換功能
ref: https://blog.kkbruce.net/2016/09/enabling-xml-document-transforms-for-all-asp-net-web-by-develop-time.html#.XoP1KGMzbRY
-
https://docs.microsoft.com/zh-tw/dotnet/framework/data/transactions/using-system-transactions-in-aspnet <system.web> <co...
-
x-ua-compatible 頭標籤大小寫不敏感,必須用在 head 中,必須在除 title 外的其他 meta 之前使用。 https://read01.com/zh-tw/KkDzm6.html#.WsGJSi5ubRY
-
IS NULL 判斷值是否為NULL 學號 成績 S0001 56 S0001 73 S0002 92 S0002 63 S0003 92 S0003 70 S0004 75 S0004 88 S0004 68 S0005 NU...