Is it possible to create web application with both webforms and mvc? Yes. We have to include below mvc assembly references in the web forms application to create hybrid application.
System.Web.Mvc
System.Web.Razor
System.ComponentModel.DataAnnotations
What are modes of Session state in ASP.NET? In-Process – It stores the session in local system.
State Server – It stores the session in a process called “ASP.NET state service”.
SQLServer – It stores the session in SQL Server database.
Custom – It allows the custom storage provider.