There a lot of other articles available in iis.net which explains how to run an ASP.NET application on IIS7. Here are those steps:
Your application pool's configuration in applicationHost.config should look like below:
<add name="ASP.NET 1.1" enable32BitAppOnWin64="true" managedRuntimeVersion="v1.1" managedPipelineMode="Classic" autoStart="true" />
Below are the commands using appcmd.exe tool which would do this.
appcmd set apppool /apppool.name:"ASP.NET 1.1" /enable32BitAppOnWin64:true appcmd set apppool /apppool.name:"ASP.NET 1.1" /managedRuntimeVersion:"v1.1" appcmd set apppool /apppool.name:"ASP.NET 1.1" /managedPipelineMode:"Classic" appcmd set apppool /apppool.name:"ASP.NET 1.1" /autoStart:true (optional)
Now, comes an interesting UI module. You can write a UI module to do whatever you want. I felt like writing one today, and thought of writing one for the above. Below is how it looks:
Here is the link for the DLL:
To add this module in your IIS 7 manager follow the below steps:
<add name="IIS7Fx11Advisor" type="IIS7Fx11Advisor.MyModuleProvider, IIS7BackupRestoreUI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=db9daa3d2ea5f6fd" />
<add name="IIS7Fx11Advisor" />
Let me know if this helps you!