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籠罩下的,霍霍,全部替換.應該是木有問題.
霍霍,一個下午只有這幾點