I have a search form where User can enter data to be searched and after that he has the possibility to use pagination.
For pagination I have to send again and again the searched paramters. What will be the best way to handle this situation.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can send that searched parameter through
urlas named parameter. For example:and you’ll get this named parameter in controller’s action like:
or
and it will give you an array like:
To get the searched item directly:
or