我关注了这篇文章:DataTable using Server Side Processing。
在里面default.aspx
,我打电话.ashx
使用:
<script type="text/javascript">
$(function () {
$('#example').dataTable({
'bProcessing': true,
'bServerSide': true,
'sAjaxSource': '/data.ashx'
});
});
在以下Page_Load
事件中defaut.aspx
:
Employee emp=new Employee();
emp.name="abc";
emp.addr="pqr";
emp.phone="123";
Employee
类的名称在哪里。
如何将员工对象传递给Data.ashx
?
我尝试使用HttpContext.Current.Session
但将Session
对象显示为null
.
请帮忙。