I have .net code that works on IE8 but wont work on google chrome or firefox. i have put this code for the user to press Enter instead of clicking the mouse everytime.
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Try
If Not IsPostBack Then
//-- my code --
Form.DefaultButton = ButContinue.UniqueID
Catch ex As Threading.ThreadAbortException
Catch ex As Exception
ReportError(ex, Session, Request)
End Try
End Sub
How can i make this work on different browsers?