It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS.
我在学习asp.net时出现这个问题。我运行一个例子时报错,但是我重新建立一个网站,然后把代码copy过去后却能运行。网上查:
When you create an new web application using visual studio.net, it automatically creates the virtual directory and configures it as an application. However, if you manually create the virtual directory and it is not configured as an application, then you will not be able to browse the application and may get the above error. The debug information you get as mentioned above, is applicable to this scenario.解决方法:
To resolve it, Right Click on the virtual directory - select properties and then click on 
"Create" next to the "Application" Label and the textbox. It will automatically create the "application" using the virtual directory's name. Now the application can be accessed. 
这个Create虚拟目录是在哪里设置????谢谢!!!