How to take parameter to the controller in ASP.NET Core MVC using ajax?
How to take parameter to the controller in ASP.NET Core MVC using ajax?
fa2020
Posts: 4Questions: 3Answers: 0
in DataTables
Hi,
I have a method in the controller that loads data into DataTable. This method needs an input parameter. I want to take a parameter to the controller. I tried this ajax call:
But when I debug, the input parameter is null.
How can solve this problem?
This question has an accepted answers - jump to answer
Answers
Use the
ajax.data
as a function otherwise it will be static data. There is an example in the docs plus this running example.Kevin