"INFO: Application Instances, Application Events, and Application State in ASP.NET" (link) explains why Application object still exists in ASP.NET, where and how to store static/shared variables in web applications. Links and References:
MVC Patterns for Web FormsMonoRail (link) When mixing ASP.Net Web Forms with MVC, check this article (link). Data BindingASP.NET and Entity Framework - Getting Started, from ASP.Net web site (link). The linked part shows how to work with related data (master-detail views). SecurityAsp.net wiki on security (link). Trust levelsTrust Levels and Policy Files (link) Web ServerUse this to quickly start the web server at a given directory: @echo offset server="C:\Program Files\Common Files\Microsoft Shared\DevServer\10.0\WebDev.WebServer40.EXE"set port=80set root=c:\dev\code\web\:: /vpath:@%server% /port:%port% /path:%root% |