我有3列,分别包含ID,NAME和Age。我的问题是如何将我在$(document).on('click', ".Btn", function () {
header = $(this).closest('tr').find('.ColumnID').text()
console.log(Value);
$.ajax({
type: "POST",
url: "MyAdmin.aspx/GetObject",
data: JSON.stringify({ 'Value': Value }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
//code that should receive datatable to be displayed
},
error: function () {
}
});
});
中输入的所有数据保存到SQL数据库,因为我没有使用任何文本框,例如,我输入了3个名称和3 ID和3 Age到我的dataGridView,然后单击“保存”将其插入数据库。如果ID存在
它只是在dataGridView1
中执行更新操作。有人可以给我一个例子或链接吗?先感谢您!