静的HTMLにJavaScriptを含めただけの場合は、MicrosoftAjax.jsを使用してASMX Webサービスを呼び出す適切な方法は何ですか?MicrosoftAjax.js、SOAP Webサービス、および静的HTML
私がこれまで持っている:
<html>
<head>
<title>Testing</title>
<script type="text/javascript" src="scripts/MicrosoftAjax.js"></script>
<script type="text/javascript">
function testCallSoap() {
// in here I want to call the default HelloWorld() method
// it is located at ~/MyTestService.asmx
}
</script>
</head>
<body>
<div>
<span onclick="testCallSoap();">test</span><br />
</div>
</body>
</html>
私はあなたが "ASMX Webサービス" –
NOTEを意味すると思う:また、 InfinitiesLoopの答えを – BuddyJoe