|
|
Buttons Not Submitting After Installing .NET Framework 1.1 SP1
|
 |
|
At times there is an issue when you install Service Pack 1 for .NET Framework
1.1 where the buttons on your pages will not cause a postback to the server.
After pulling my hair out trying to determine what the issue was I was lucky
enough to find this article on the issue:
|
 |
|
 |
|
http://channel9.msdn.com/ShowPost.aspx?PostID=21650
|
 |
|
Some initial symptoms to check with this problem are that your buttons on
your ASP .NET page are no longer causing a post back andck the System
log contains the error message:
|
 |
|
“Failed
while copying the ASP.NET client side script files to directories under
(Directory Name). Error code: 80070005”.
|
 |
|
The cause of this problem is that there is an error in the WebValidationUi.js
file under the aspnet_client folder. The changes that were made to this file
will prevent the page from submitting.
|
 |
|
The solution to this problem is simple, copy the old files from the
aspnet_client folder over the new ones. As of this date Microsoft has not
released the “official” fix to this problem but replacing the new files with the
old ones your pages will work correctly and SP1 will be installed on the server
as well.
|