Ajax.BeginForm使用時注意的細節

來源:互聯網
上載者:User

標籤: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,

微軟有內建的判斷是否校正成功:

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.