我需要在ASP.NET中的表中显示数据库。我得到了一些建议,例如DataGridView减慢了我们的过程。所以我使用jQuery表。但是如何在SQL Server数据库的ASP.NET MVC网页中显示jQuery表中的数据。
答案 0 :(得分:1)
对于jQuery表,您可以实现对JSON编码数据的操作。然后可以将jQuery表配置为通过该源获取数据:
[HttpPost]
public JsonResult GetJsonData()
{
var data = /* Get your data here */;
return Json(data);
}
然后配置数据表以从远程源获取数据,如documentation中指定的那样:
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"sAjaxSource": 'http://www.yourdomain.com/yourController/GetJsonData',
"sServerMethod": "POST"
} );
});
不确定这会改善您的表现。