ASP.NET Web Site or ASP.NET Web Application?

前端 未结 25 2320
自闭症患者
自闭症患者 2020-11-21 08:26

When I start a new ASP.NET project in Visual Studio, I can create an ASP.NET Web Application or I can create an ASP.NET Web Site.

What is the difference between ASP.

25条回答
  •  无人及你
    2020-11-21 08:49

    One of the key differences is that Websites compile dynamically and create on-the-fly assemblies. Web applicaitons compile into one large assembly.

    The distinction between the two has been done away with in Visual Studio 2008.

提交回复
热议问题