我是asp.net mvc的新手。请建议如何使用网格进行Ajax调用。我在代码中使用了@Html.Grid
但是找不到刷新网格的方法。添加编辑和删除后,我必须刷新网格。如何使用添加,编辑和删除弹出窗口创建网格?
答案 0 :(得分:0)
ajax代码: -
function delete_data(delete_id) {
var param = { Delete_ID: delete_id };
if (confirm("Are you sure, you want to delete?")) {
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "default.aspx/delete_date",
data: JSON.stringify(param),
dataType: "json",
success: function (data) {
window.location = base_url;
},
error: function (result) {
alert("Error Occurred:");
}
});
}
}
将aboe代码放在aspx文件或javascript文件中。
c#code
[System.Web.Services.WebMethod(BufferResponse = false, EnableSession = true)]
public static string delete_data(string View_ID)
{
///code
Gridview1.DataSource = Records;
Gridview1.DataBind();
}