You can try:
In HTML:
And javascript:
function submitButton(event) {
if (event.which == 13) {
$('#Button1').trigger('click');
}
}
Code behind:
protected void Button1_Click(object sender, EventArgs e)
{
//load data and fill to gridview
} // fixed the function view for users
Hope this help