Hi
I am trying paging in mvc framework.
I have url:
http://localhost/abc/methodname/date.../next/previous
method is following:
[HttpGet]
public Actionresult
methodname(string date="",string perpagedata="",bool next=false,bool previous=false)
{
/*user does not send page number
so please tell me how to implement pagination logic that show the per page data of each request.
retrieve the data from data base using linq query.*/
}
Please solve my issue
Thanks in advance