How can I navigate to the last visited page when 'ESC' key is pressed. How can I do this using Asp.net mvc (c#). Please help
|
feedback
|
|
The escape key doesn't cause any kind of postback, so you won't be able to do it with .net exclusively. What you'll need to do is capture the escape keypress with Javascript.
| |||
|
feedback
|
|
I think you can do this with a bit of JavaScript. The following link will navigate back in the history using the JavaScript history object. <a href="javascript:history.go(-1)">Go back</a> Attach a key press event to the document to monitor for the esc key and then use the history object. Bob | |||
|
feedback
|
|
I found this question 'cuz I was having a similar problem. rockinthesixstring's example works fine in IE but not in Firefox. alert() works fine even in Firefox, but not history.back(). In fact, I put the alert() after the history.back() and I got my alert but not my history. The same code worked fine on enter or any other key. In firefox, it appears that if you try to do some things when the escape key is pressed, it continues processing the escape key which then cancels whatever you were trying to do. Finally figured out that I had to force the propagation of the event to stop as shown below...
| |||
|
feedback
|