











效果图
我们看下分页传输了一些什么数据
post的数据就只有一点参数.
返回的数据就是json数据
不会有大家都讨厌的viewstate
rad的grid还是不错的.功能相当强大!
大家看看代码
绑定linq
<script runat="server">
[System.Web.Services.WebMethod]
public static GridBindingData GetCustomers(int startRowIndex, int maximumRows, string sortExpression, string filterExpression)
{
return RadGrid.GetBindingData("NorthwindDataContext", "Customers", startRowIndex, maximumRows, sortExpression, filterExpression);
}
</script>
客户端js绑定
Code
aspx 页面代码
Code
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。