I've recently learned that it's not a bad idea to register ASP.NET with new instances of IIS. This tends to aid in resolving various issues with ASP.NET web extensions. Here's the quick and easy way to get that done.
Open command prompt as Administrator and issue the following:
From there you need to reset IIS by issuing the following:
Open command prompt as Administrator and issue the following:
cd c:\Windows\Microsoft.NET\Framework64\v4.0The last directory 'v4.0' may be different depending on what version is installed. You will want to select the latest version that is available on your system. Now, in that directory, issue the following:
aspnet_regiss -iYou should see the following output:
From there you need to reset IIS by issuing the following:
iisresetOnce that completes you should be good to go.
Comments
Post a Comment