Does anyone have any clue why a code behind function would work in Firefox but not in IE. It seems that the client side wouldn't effect what's going on in the code behind.
A:
Event handling in the code behind of a WebForm
is triggered by a posting of data. Depending on the control, how that posting gets triggered can differ. Sometimes it's done through JavaScript. So here's a few things to check for:
- Is scripting enabled in IE?
- If this is a custom control running JavaScript, is the JavaScript compatible with IE?
- Are there any plugins or malware loaded in the IE browser that is interfering with the integrity of the post data?
If you post some more specifics or your code, we should have a better idea of what's going on.
Jacob
2010-09-22 00:45:17