今天我想實現利用JavaScript調用WebService我首先就想到了ASP
<asp:ScriptManager runat=
<services>
<asp:servicereference path=
services>
</asp:ScriptManager>
然後我有加了個button 並為其指定click事件
<button onclick=
接下來開始寫腳本
<script type=
function getHello()
{
webservice
}
function callComplete(result)
{
alert(result);
}
</script>
按說應該沒有什麼問題了但是點擊按鈕的時候腳本報錯 webservice未定義
我就開始和人家的開始比
From:http://tw.wingwit.com/Article/program/net/201311/12768.html