I have a web-page application already created, but when I open it in visual studio 2008, it says there that:

ASP.NET 2.0 has not been registered on the Web Server. You need to manually configure you Web server for ASP.NET 2.0 in order for your site to run correctly.

I'm using asp.net 2.0, IIS7 and running on vista home premium.

How to register ASP.NET 2.0 to my web server(IIS7)?

link|improve this question
feedback

4 Answers

up vote 36 down vote accepted
C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -ir


EDIT: aspnet_regiis.exe should no longer be used with IIS7 to install ASP.NET

Open Control Panel
  Programs\Turn Windows Features on or off
    Internet Information Services
      World Wide Web Services
        Application development Features
          ASP.Net <-- check mark here
link|improve this answer
That worked with IIS 5, but is it adequate with IIS 7? Does it enable all of the features that will be necessary? They're disabled by default in IIS 7. – John Saunders Mar 15 '09 at 10:42
3  
there is an error when i did that. it says that: "An error has occured: 0x800702e4 the requested operation requires elevation." – Art Mar 15 '09 at 10:47
Thank you so much., it worked like magic., – Art Mar 15 '09 at 11:11
Darin, sorry for re-opening this problem again, but I have the same problem here and while trying to follow your suggestion I've figured out that I have no WWW services -> Application development Features available anywhere.... any chance to provide the full paths again and possibly a bit more detailed? [Windows Server 2007 / IIS7 ] thanks! – belzebu Sep 29 '09 at 12:39
mea culpa... found it.. I was temporarily blinded : ) – belzebu Sep 29 '09 at 13:42
show 2 more comments
feedback

If you installed IIS after the .Net framework you can solve the porblem by re-installing the .Net framework. Part of its install detects whether IIS is present and updates IIS accordingly.

link|improve this answer
Thank you, @sipwiz, I can stop banging my head on my desk now. Microsoft, please go jump in a lake. – JMD Mar 21 at 22:31
feedback

Open Control Panel - Programs - Turn Windows Features on or off expand - Internet Information Services expand - World Wide Web Services expand - Application development Features check - ASP.Net

Its advisable you check other feature to avoid future problem that might not give direct error messages Please don't forget to mark this question as answered if it solves your problem for the purpose of others

link|improve this answer
feedback

I got it resolved by doing Repir on .NET framework Extended, in Add/Remove program ;

Using win2008R2, .NET framework 4.0

link|improve this answer
feedback

Your Answer

 
or
required, but never shown