我想使用Ajax調用C#函數,但調用不工作。腳本顯示hello消息,但不顯示成功/錯誤消息。我做錯了什麼Ajax調用c#函數不工作
Java腳本的
<script type="text/javascript">
$(document).ready(function() {
$('#btnsave1').click(function() {
alert("hello");
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "LeaveSurrender.aspx/apply",
dataType: "json",
success: function() {
alert('Successfully Saved');
// window.location.href = "ClubCreation.aspx";
},
Error: function() {
alert('error');
}
});
});
});
C#方法
protected void apply()
{
MessageBox.Show("hi");
}
現在的作品,謝謝:) :) :) – techno
@techno? ??????? –
他打電話的方式既不需要公開也不必須是webmethod。 – afzalulh