这里我有一个gridview,我使用jquery 将检索到的数据附加到它。我想在gridview 中使用分页。但它不起作用。我不知道为什么..因为当我在其他应用程序中使用相同的方法时它工作得非常好,这些应用程序通常在没有 jquery 的情况下绑定网格。请检查我的代码并告诉我出了什么问题
这是我的网格,
<form runat="server">
<asp:GridView ID="GridView1" ClientIDMode="Static" runat="server" AutoGenerateColumns="False" AllowPaging="True" PageSize="5" GridLines="None" CellSpacing="10" >
</asp:GridView>
这是我将值(绑定)附加到网格的 jquery 代码,
$("#search-user")
.button()
.click(function () {
$.ajax({
contentType: "application/json; charset=utf-8",
url: "MyHandler.ashx",
data: {
'user': "" + $("#txtsearch").val(),
'method': 'search'
},
dataType: "json",
success: updateGrid,
error: function (result) { alert("Error- Inside user Searching "); }
});
});
function updateGrid(data) {
var i = 0;
var content;
$("#GridView1").html(''); // clearing the old data in grid
$("#GridView1").append("<tr><th>" + "Name" + "</th><th>" + "Gender" + "</th><th>" + "Date of Birth" + "</th><th>" + "Role" + "</th><th>" + "Password" + "</th><th>" + "Email" + "</th></tr>");
while (data[i] != null)
{ // appending the retrieved data to grid
$("#GridView1").append("<tr><td>" + data[i].name + "</td><td>" + data[i].gender + "</td><td>" + data[i].dob + "</td><td>" + data[i].role + "</td><td>" + data[i].password + "</td><td>" + data[i].email + "</td></tr>");
i++;
}
}