Hi all,
I know it's a long shot with so little details I can provide, but here's the problem:
I have an asp.net (3.5) application, which I'm trying to run on IE,Firefox and Chrome. On IE and Chrome EVERYTHING works just fine, but Firefox causes trouble:
On Firefox, when clicking SOME of the link buttons I have,the status bar shows the relevant javascript:__doPostBack('...',")
call, but nothing happens (no post back or anything..the button simply doesn't respond).
An example <asp:LinkButton>
<asp:LinkButton ID="bAccountID" onClick="ViewAccountDetails" runat="server"
CommandName='<%# DataBinder.Eval(Container.DataItem, "Users_aID") %>'>
<%# DataBinder.Eval(Container.DataItem, "iAccountID") %>
</asp:LinkButton>
Important to say:
- Some of the links do work on Firefox, and as far as I can see all
.aspx
pages the buttons point to were designed the same. - Again, on IE and Chrome - NO PROBLEM!
- Javascript in Firefox is enabled.
- tried to run debug and put a break point in a relevant eventhandler for one of the clicks - simply doesn't go there.
- An example for a standard non-working linkbutton:
Any smart and well explained idea will be highly appreciated!