我刚开始使用ASP.NET。我目前正在通过创建ASP.NET Empty Web Application
开始教程。我所拥有的,有点相似,是ASP.NET Empty Website
。
但是该项目模板只提供一个web.config
文件,其中几乎没有任何内容,而这就是它。但在教程中,它显示他的项目有一个Properties
和一个References
文件夹。可能还有一个更完整的web.config
。
那么我能做得最好吗?有没有办法添加Properties
和References
文件夹?那不完整的web.config
呢?这是唯一存在的东西:
<configuration>
<system.web>
<compilation debug="false" targetFramework="4.0">
<assemblies>
</assemblies>
</compilation>
</system.web>
</configuration>
或者我最好从ASP.NET Web Forms Site
开始,然后删除我不需要的所有文件?
答案 0 :(得分:1)
网站和应用程序之间存在差异(=&gt; What's the difference between a web site and a web application?)。
打开File > New > Project
(Ctrl + Shift + N
)并从那里选择ASP.NET Empty Web Application
。