標籤:style blog http color 使用 os io 資料
1. 使用Ajax.BeginForm非同步式提交資料時一定不要忘了引用 <script src="~/Scripts/jquery.unobtrusive-ajax.js"></script>
具體使用如下代碼:
<head> <meta name="viewport" content="width=device-width" /> <title>Regist</title> <script src="~/Scripts/jquery-1.7.1.js"></script> <script src="~/Scripts/jquery.unobtrusive-ajax.js"></script> </head><body> <div> @using (Ajax.BeginForm("Add1", "Student", new AjaxOptions(){Confirm ="您是否要提交嗎?",HttpMethod = "Post",InsertionMode = InsertionMode.InsertAfter,UpdateTargetId = "result",OnSuccess="afterSuccess"})) { <div> 使用者名稱:<input type="text" name="UserName" /><br /> 密碼:<input type="text" name="Pwd"/><br /> <input type="submit" value="提交"/> </div> } <div style="border:1px solid #0ff" id="result"> </div>
View Code
2.MVC內建的校正-全域用戶端校正的設定
在項目的Web.config裡面有一句是設定整個項目的全域用戶端校正,如:
當ClientValidationEnabled設定為true時表明,所有都是適用微軟內建的校正,如果想某個頁面不使用微軟內建的校正時,可以在頁面上自己定義,設定成false,
微軟有內建的判斷是否校正成功: