Top questions

Post

New Post


Find by name:


QUESTION


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
Edit | Details | Delete


List the major built-in objects in ASP.NET?


Application Request Response Server Session Context Trace
Edit | Details | Delete


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.
Edit | Details | Delete



Back to HomePage