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>
訂閱:
文章 (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...
-
一. print and echo 皆是用來顯示字串在螢幕 <?php $variable=3; print("使用print 輸出 $variable<br/>"); echo "使用print 輸出 $...
-
alter database myblog character set utf8;