Hey all. I have a ASP.NET page that lists a bunch of user accounts.
If I click on a user, an event called LinkChosen is fired, which opens the account view page for that user.
I can also search for users, which narrows down the list. This event is called btnSearch_click
If I click on a user, LinkChosen() is called, and I'm taken to a new page. If I hit the back button, and try to do a search, instead of firing btnSearch_click(), it will still fire the LinkChosen() event and take me to the account I was viewing before pushing back. Doing a search before clicking an account works like it should.
I'm using C# and ASP.NET, and this error appears in IE, but not Firefox.
Does anyone have any ideas?
Thanks.
Clarification edit: The "show single account" action is a hyperlink, not a button. :)