I know how to enable Edit and Continue in ASP.NET Web Application projects (see here), however, I found no information as to how to achieve the same thing i
Although you can't edit the code while stepping through with the debugger, Web Site projects allow you to simply edit the source code and then reload the page. This is almost as useful as "Edit and Continue." ASP.NET dynamic compilation allows you to change the source code which triggers the automatic recompile.
Here is a related article on Understanding ASP.NET Dynamic Compilation
This page is also useful and has a section called Comparing Web Site Projects and Web Application Projects