Recently written .NET program, in a page submitted data, I added some check controls, when the program is running, the prompt "I can't find the script library -" and other prompt information, prompt to re-execute An ASPNET_REGIIS -C command to reinstall the script library. Mainly a file re-registered a Webuivalidation.js.
I think it may be that there is an incomplete problem when installing .NET, how do you re-register this file?
First find the location of this file, you can use the functions of the lookup to find the location of this file, this file is generally
C: /Winnt/Microsoft.Net/framework/v1.1.4322/ASP.NETCLIENTFILES /? (Win2000 Professional)
V1.1.4322 is the version number of Framework
After finding this path, return to the upper class, which is within the folder of V1.1.4322, see an ASPNET_REGIS.EXE file. Open the DOS command window, type the current path, perform the following command
C: /Winnt/Microsoft.net/framework/v1.1.4322/ASPNET_REGIIS -C
Results of the
Start copying this version <1.1.4322.0> ASP.NET client script file.
A client script file for ASP.NETs for this version <1.1.4322.0> has been copied.
Re-execute the .NET program to resolve this issue
?