Hi Everyone,
I have the following javascript code:
I'm trying to pass to parameters to C# method but they always null.
Here is my C# method:
- [HttpPost]
- public IActionResult ExtractData(string No, string DataInterval, string StartDate, string EndStart)
- {
- string x = No;
- return View();
- }
What is it I'm doing wrong that makes this method parameters to always be null?
Asma KhalidPosted Jun 19, 2020, 12:07 AM
Jignesh KumarPosted Jun 18, 2020, 10:55 PM