Avatar of Abhilash Nagar
Abhilash Nagar

asked on 

JQuery-Ajax URL and passing Data into Rest API controller method

Anyone please suggest , how to achieve this.

I am using Jquery-Ajax with URL below :

 url: "http://localhost/student/class/attendance?dateFrom=636869952000000000&dateTo=636912287999990000&categoryId=1",


I want to pass these 3 parameter information (dateFrom,dateTo,categoryId) into  REST WEB API controller method as below :


        [Route("student/class/attendence")]
        [HttpGet]
        public HttpResponseMessage GetStudentInfo(string dateFrom, string dateTo,string categoryId)
        {


        }


Can anyone suggest option to achieve this please?

Thanks.
.NET MVCjQueryREST

Avatar of undefined
Last Comment
Abhilash Nagar

8/22/2022 - Mon