Hi everyone i have a problem like this.
For example im in http://localhost/Search.aspx I have 2 textboxes (txtUserName and txtPassword) in my page for login. user can press enter key to call Login() method when any of these textboxes focused. I capture enter key like this
txtUserName.Attributes.Add("onkeydown", "if(event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {Login();return false;}} else {return true}; ");
txtPassword.Attributes.Add("onkeydown", "if(event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {Login();return false;}} else {return true}; ");
Its calling the Login() method, and After doing that method Opera redirects the page to my default page (http://localhost/Default.aspx)
Other browsers is working as it should, in other words they are not redirect me to the default page.
Opera version 10.61