-1

I've database record in HTML Table and having a hyperlink 'Edit'. I want to pass data by clicking on Edit link, the selected row and ID of that Data should be show on another page without querystring.

Y2J
  • 41
  • 1
  • 8

1 Answers1

0

Yes, there is an other way. If you make a POST instead of of a GET. This way the data you want to pass will be included in the body of the request and not in the query string.

How can you do this? Here is a great way to do so.

Community
  • 1
  • 1
Christos
  • 53,228
  • 8
  • 76
  • 108