Hi guys
i have a panel control that has a default button, it works fine in IE 8, 7 and even 6! but it does not work in firefox and google chome, any ideas? heres my code below.
Code:<div id="crackHolder">
<asp:Panel ID="Panel1" runat="server" DefaultButton ="LinkButton1">
<div id="crack1"><input id="txtFind" value="Search:" runat ="server" onclick ="emptySearch()"/></div>
<div id="crack"> <asp:LinkButton ID="LinkButton1" runat="server" CssClass="specialLink8">search</asp:LinkButton>
</div>
</asp:Panel>
</div>
And the code behind is below
Protected Sub LinkButton1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles LinkButton1.Click
Session("value1") = txtFind.Value
Response.Redirect("Search.aspx")
End Sub