Ummar
Ummar

Reputation: 21

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

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

Upvotes: 0

Views: 203

Answers (1)

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

Upvotes: 1

Related Questions