
So I have created a HTML web page for implementing a Search function. Let's say I got the search result of a list of employees based on some filters. I am able to click on the list and go into the EMPLOYEE entity for details. But how can I go back to the search result page???
*This post is locked for comments
I have the same question (0)You could try the following
<input action="action" onclick="window.history.go(-1); return false;" type="button" value="Back" />
or