Thursday, March 22, 2012

ASP.NET: Web Site versus Web Application Project

While creating your asp.net website I would recommend using ASP.Net Web Application Project modal than ASP.net web site modal.

Web Site  has following disadvantages:
1. Profiles only Work Out-of-the-Box with the Web Site Template.
2. No namespaces are used for classes anywhere in the App_Code folder.

Check this website from Microsoft related to Introduction to Application Project Modal   http://msdn.microsoft.com/en-us/library/aa730880(VS.80).aspx#wapp_topic5

Converting a Website to Web Application Modal
http://msdn.microsoft.com/en-us/library/aa983476(VS.80).aspx



No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...