.Net Error
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map
I got this error when I was trying to open a .aspx page on my Windows 7 machine. I realized I had installed IIS after .Net Framework. Hence, I had to re register my .NET framework on to IIS.
This is what I did to get rid of the error-
and copied the path.
Only the script maps for applications that use an earlier version of ASP.NET are updated. Applications that use a later version are not affected.
Refer http://msdn.microsoft.com/en-us/library/k6h9cz8h%28VS.80%29.aspx for details
If aspnet_regiis -i doesn't do the job also try aspnet_regiis -ir
Merci!!
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map
I got this error when I was trying to open a .aspx page on my Windows 7 machine. I realized I had installed IIS after .Net Framework. Hence, I had to re register my .NET framework on to IIS.
This is what I did to get rid of the error-
- I have a 32 bit server so I navigated to the folder where my .Net framework files reside which in my case is -
and copied the path.
- I opened the command prompt (run cmd from the Start menu)
- did a cd C:\Windows\Microsoft.NET\Framework\v4.0.30319
- Ran the command aspnet_regiis -i
Only the script maps for applications that use an earlier version of ASP.NET are updated. Applications that use a later version are not affected.
Refer http://msdn.microsoft.com/en-us/library/k6h9cz8h%28VS.80%29.aspx for details
- And then browsed my page again and voila it worked!
If aspnet_regiis -i doesn't do the job also try aspnet_regiis -ir
Merci!!
No comments:
Post a Comment