熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

ASP.NET AJAX客戶端組件初探

2022-06-13   來源: .NET編程 

  以組件的思想重新審視Ajax客戶端開發

  在進入主題之前我想和大家一起再來看一下本文章系列第一篇中的一個DemoASPNETAJAXTest我現在將其中的客戶端代碼重新貼在這裡

  Defaultaspx:



  

  DOCTYPE html PUBLIC //WC//DTD XHTML //EN > <html xmlns=> <head runat=server> <title>Untitled Pagetitle> head> <body> <form id=form runat=server> <asp:ScriptManager ID=ScriptManager runat=server> <Scripts> <asp:ScriptReference Path=~/ajaxjs /> Scripts> <Services> <asp:ServiceReference Path=~/SayHelloServiceasmx /> Services> asp:ScriptManager> <div> <input id=btnSayHello type=button value=SayHello onclick=btnSayHello_onClick() /> <div id=result>div> div> form> body> html>

  ajaxjs:

  //單擊btnSayHello時調用的JS函數
 function btnSayHello_onClick()
 {
     SayHelloServiceSayHello(OnSucceededOnFailded);
 }
 .NET編程免費提供,內容來源於互聯網,本文歸原作者所有。

推薦文章
Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.