$(document).keypress(function (e) {
if (e.which == 13) {
alert("Inserting");
insertIssueProgress();
}
});
function insertIssueProgress() {
$.ajax({
type: 'POST',
contentType: "application/json; charset=utf-8",
url: 'ManageIssueProgress.aspx/InsertIssueProgress2',
async: false,
success: function (response) {
alert("Record Has been Saved in Database");
},
error: function ()
{ alert("Record Not Saved"); }
});
}
public void InsertIssueProgress2()
{
//GridViewRow row = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
GridViewRow row = (GridViewRow)Gr ...
Go to the complete details ...