I've had many of the same ideas as both of you, and I keep coming up scratching my head. If I simply try to log in directly to their site (not through the remote form on my site), the url and source is exactly the same, regardless of browser. Javascript in the source checks browser, but it is limited to this:
Code: ( text )
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if ((browserName == "Netscape") && (browserVer >= 4 )) {
if (!window.menubar.visible)
window.menubar.visible = true;
if (!window.toolbar.visible)
window.toolbar.visible = true;
}
The passwords are correct in both cases. I know this because the PHP pulls the password straight from the link, and the link is the same on all browsers. I also verified by changing the password field to a text field, and then dropped the password in a javascript alert. It's solidly the same all round. Lastly, if you put the *wrong* password into IE (or another browser), you get redirected to a "your username and/or password is incorrect" page. Whereas if you put in the correct password in IE, the response is the login screen, without the incorrect password error, (which is dynamically generated, not javascript or some page-triggered item).
As for the comp: I tried the same link across different browsers in the same comp, as well as across various computers. This is really bewildering. I'm tempted to try and contact the webmaster of the site just to ask what in the world their ASP does that might lead to that.