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,categoryI
d) into REST WEB API controller method as below :
[Route("student/class/atte
ndence")]
[HttpGet]
public HttpResponseMessage GetStudentInfo(string dateFrom, string dateTo,string categoryId)
{
}
Can anyone suggest option to achieve this please?
Thanks.