How can i hide the query string from the url using asp. Net mvc

214 Views Asked by At

I want to hide the query string from the url eg

http://example.com/productlist/id=2/pageno/3

My url should look like

http://example.com/productlist
1

There are 1 best solutions below

0
On

you have to pass your data by HTTP POST. and don't use GET method.