点击按钮后,我弹出一个javascript弹出。
Page.ClientScript.RegisterStartupScript(this.GetType(), "alert", "doajax();", true);
然后显示两个按钮确认或取消。
如果我点击确认,我需要能够在我的代码中调用一个方法。
<script type="text/javascript">
function doajax() {
$.ajax({
type: "POST",
url: 'Application.aspx/Function',
data: "",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
$("#divResult").html("success");
//I need to call my code behind method here
},
error: function (e) {
$("#divResult").html("Something Wrong.");
}
});
}
</script>
我尝试过几件事,但没有任何东西可以达到我的方法。
任何帮助都将不胜感激。
捐赠