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

218 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 answers

0
Mohammad Amin Pourmoradian On

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