up vote 1 down vote favorite
share [g+] share [fb]

Is there a way to configure ASP.NET in IIS7?

I know this must be a stupid question, but in IIS7 I see an icon for ASP. Is this configuration for Classic ASP?

Thx, Lieven Cardoen

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

IIS 7 is very different from previous versions, especially with regards to ASP.NET.

In previous versions, the ASP.NET runtime was a separate DLL and separate process, whereas in IIS7 the ASP.NET runtime has been integrated into the core IIS server.

IIS7 does also include support for "classic" ASP, so the icon you see simply called "ASP" will be for "classic" ASP configuration. There should be a separate section for ASP.NET configuration.

Note that all IIS7 and ASP.NET config is now done via .config files (like your machine.config and web.config in ASP.NET).

The following links should provide further information:

IIS Configuration Reference

ASP.NET Integration with IIS7

link|improve this answer
feedback

Check if ASP.Net feature is enabled. Here is a description of how to verify it.

link|improve this answer
feedback

Have you installed ASP.NET in IIS7? It might not be installed by default.

link|improve this answer
feedback

What exactly do you want to configure?

In IIS manager there's an entire section for ASP.NET.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.