如何往自己的網站增加Asp.net Ajax

來源:互聯網
上載者:User
1.Web.config的更改
建議建立一個Asp.net Ajax的Web項目
然後拷貝過來更改,最早一隻用別人的Web.config會出錯.
發現是沒有安裝Asp.net Ajax Toolkit

2.用一個UpdatePanel來括住可能需要更新的內容
  需要更新內容放在<ContentTemplate></ContentTemplate>裡面

  如果一個頁面中存在多個UpdatePanel,又需要可能需要互相影響UpdateMode--可以不是全部更新
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
這樣更新就是部分的更新

3.Trigger裡面的AsyncPostBackTrigger
<asp:AsyncPostBackTrigger ControlID="btnInquire" />
可以有ControlID或者EventName
可以指定多個

4.UpdateProgress 用於提交請求的時候出現的提示資訊
             <asp:UpdateProgress ID="UpdateProgress1" runat="server">
                    <ProgressTemplate>
                        <div style="background-color: Yellow; color: Red; font-size: smaller">
                            Submiting your request......</div>
                    </ProgressTemplate>
                </asp:UpdateProgress>
如果需要根據某個UpdatePanel更新的時候出現,可以指定AssociatedUpdatePanelID
<asp:UpdateProgress ID="LoginUpdateProgress" AssociatedUpdatePanelID="LoginUpdatePanel"
    runat="server">
    <ProgressTemplate>
        <div style="background-color: Yellow; color: Red; font-size: smaller">
            Logining for you......</div>
    </ProgressTemplate>
</asp:UpdateProgress>
5.發布到虛擬機器,可以拷貝
Asp.net Ajax的安裝目錄的Script都拷貝到根目錄下
然後ScriptManager的 <asp:ScriptManager ID="ScriptManager1" runat="server" ScriptPath="MicrosoftAjaxLibrary">
        </asp:ScriptManager>
一般把ScriptManager放到MasterPage中
6.
Page.ClientScript.RegisterClientScriptBlock在UpdatePanel存在的情況下不能生效
替換方法
System.Web.UI.ScriptManager.RegisterClientScriptBlock---Asp.net Ajax中的一個類
還好我大部分都是MasterPage籠罩下的,霍霍,全部替換.應該是木有問題.

霍霍,一個下午只有這幾點

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.