Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82528

How to load html table in asp.net not mvc ? my data comes wrong format

$
0
0

HTML TABLE

  1. 2. 3. 4. 5. 6. 7. 8. 9.
    ABC

Data Format Comes from server side debug mode data

Object {d: "{"Table":[["1235876sfwer",100.00,"\/Date(147560760…76sfwer",100.00,"\/Date(1475521200000)\/"],null]}"}d: "{"Table":[["1235876sfwer",100.00,"\/Date(1475607600000)\/"],["1235876sfwer",100.00,"\/Date(1475521200000)\/"],null]}"proto: Object

Javascript Syntax

$.ajax({
type: "POST",
dataType: "json",
contentType: 'application/json; charset=utf-8',
url: '/WebForm1.aspx/GetQueryInfo',
success: function (dataa) {
debugger
$('#example').DataTable({
data: dataa
});
}
});


Viewing all articles
Browse latest Browse all 82528

Trending Articles