My code was running smoothly on Windows 2003 & IIS 6:
javascript:window.opener.document.formConfirmation.textBoxDateFrom.value = '01/01/2011';
However, when I tried it on Windows 2008 with IIS 7, it didn't work!
I am unable to modify the code above because it is generated from a calendar DLL that I don't have access to. I'm wondering if there's a setting in IIS that is preventing some Javascript functions from working properly. If that's the case, what steps can I take to make the code work as it did before?
Just so you know, this line doesn't work in IIS 7:
document.Form1.txtAlias.value;
but this one works in IIS 7:
document.getElementById('txtAlias').value;
Both of these lines functioned correctly in IIS 6!!! Can anyone shed light on this issue? Any assistance would be greatly appreciated as I try to recover the time I've spent troubleshooting...