您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)ASP.NET中ScriptManager控件如何使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
在ASP.NET AJAX中,由于一個(gè)ASPX頁面上只能有一個(gè)ScriptManager控件,所以在有Master-Page的情況下,如果需要在Master-Page和Content-Page中需要引入不同的腳本時(shí),就需要在Content-page中使用ScriptManagerProxy控件,而不是ScriptManager,ScriptManagerProxy和 ScriptManager是兩個(gè)非常相似的控件。ASP.NET AJAX簡單定義形式如下:
<asp:ScriptManagerProxyidasp:ScriptManagerProxyid="ScriptManagerProxy1"runat="server"> <Services> <asp:ServiceReferencePathasp:ServiceReferencePath="CalculWebService.asmx"/> </Services> </asp:ScriptManagerProxy>
在它下面可以添加的子標(biāo)簽有:Services,Scripts,AuthenticationService,ProfileService
添加一個(gè)Master-Page,在它上面添加一個(gè)ScriptManager控件,并引入WebService SimpleWebService.asmx,并添加相應(yīng)的HTML元素:
<div>
<asp:ScriptManagerIDasp:ScriptManagerID="ScriptManager1"runat="server">
<Services>
<asp:ServiceReferencePathasp:ServiceReferencePath=
"SimpleWebService.asmx"/></Services>
</asp:ScriptManager>
<asp:contentplaceholderidasp:contentplaceholderid=
"ContentPlaceHolder1"runat="server"></asp:contentplaceholder>
<h4>請輸入名稱:</h4>
<inputidinputid="inputName"type="text"/>
<inputidinputid="button"type="button"value="確定"onclick=
"returnOnbuttonGo_click()"/></div>
添加一個(gè)Content-Page,在它上面添加一個(gè)ScriptManagerProxy控件,并引入WebService CalculWebService.asmx,并添加相應(yīng)的HTML元素:
<div>
<asp:ScriptManagerProxyidasp:ScriptManagerProxyid=
"ScriptManagerProxy1"runat="server"><Services>
<asp:ServiceReferencePathasp:ServiceReferencePath=
"CalculWebService.asmx"/></Services>
</asp:ScriptManagerProxy>
<h4>請輸入兩個(gè)數(shù):</h4> <inputidinputid="inputA"type=
"text"style="width:110px"/> + <inputidinputid="inputB"style="width:110px"type="text"/>
<inputidinputid="buttonEqual"type="button"value="="onclick=
"returnOnbuttonEqual_click()"/></div>
上述就是小編為大家分享的ASP.NET中ScriptManager控件如何使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。