I am experiencing the same problem. The application runs fine on the
original server with .NET framework v1.1. On our new server which has v1.1
with service pack 1, the submit button fails to operate. What I have found
is the emitted javascript to handle the button click event is different for
SP1 then it is for v1.1.
The emitted code that works is as follows:
<script language="javascript">
<!-- var Page_ValidationActive = false; if (typeof(clientInformation) !=
"undefined" && clientInformation.appName.indexOf("Explorer") != -1) {
if ((typeof(Page_ValidationVer) != "undefined") && (Page_ValidationVer
== "125"))
ValidatorOnLoad();
}
function ValidatorOnSubmit() {
if (Page_ValidationActive) {
ValidatorCommonOnSubmit();
}
}
// -->
</script>
The resulting code after SP1 is installed is like this:
<script language="javascript" type="text/javascript">
<!-- var Page_ValidationActive = false; if (typeof(clientInformation) !=
"undefined" && clientInformation.appName.indexOf("Explorer") != -1) {
if ((typeof(Page_ValidationVer) != "undefined") && (Page_ValidationVer
== "125"))
ValidatorOnLoad();
}
function ValidatorOnSubmit() {
if (Page_ValidationActive) {
return ValidatorCommonOnSubmit();
}
return true;
}
// -->
</script>
This code is completely generated by ASP.NET for the control, we have not
made any modifications.
Any ideas for a work around??
Thanks,
Paul Kilbourne