我正在尝试使用 Ajax 调用 C# 函数,但调用不起作用。脚本显示 hello 消息但不显示成功/错误消息。我做错了什么
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");
}