私はこの投稿に従いました:サーバーサイド処理を使用したDataTable。
内部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