jQuery Datatables in ASP.NET MVC applications
I'm trying to fetch my users list data into jQuery Datatable, but instead of data getting populated in my Datatable, it just returns a raw JSON format page with my data.
I have searched all over the internet mostly what is written in their solution I'm applying the same technique.
Here is my
ASP.NET MVC action method:
[Route("Admin/Users")]
public ActionResult GetAllUsers()
{
List datas = new List();
Dt = _helper.GetAllUsers();
if (Dt.Rows.Count > 0)
{
foreach...