What are the different Session state management options available in ASP.NET?

State Management in ASP.NET A new instance of the Web page class is created each time the page is posted to the server. In traditional Web programming, all information that is associated with the page, along with the controls on the page, would be lost with each roundtrip. The Microsoft ASP.NET framework includes several options … Read more

What is View State?

View State is the method to preserve the Value of the Page and Controls between round trips. It is a Page-Level State Management technique. View State is turned on by default and normally serializes the data in every control on the page regardless of whether it is actually used during a post-back. A web application … Read more

What are the different validators in ASP.NET?

ASP.NET validation controls define an important role in validating the user input data. Whenever the user gives the input, it must always be validated before sending it across to various layers of an application. If we get the user input with validation, then chances are that we are sending the wrong data. So, validation is … Read more

What is ASP.NET?

ASP.NET is Microsoft’s framework to build Web applications. ASP.NET is a part of .NET Framework. ASP.NET and Web Forms are used to build the front end and in the backend, C# langauge is used. ASP.NET runs on a Web Server, IIS. Advantages of ASP.NET Separation of Code from HTML To make a clean sweep, with … Read more

What is Razor in ASP.NET

Razor is a markup syntax that lets you embed server-based code (Visual Basic and C#) into web pages. The server-based code can create dynamic web content on the fly, while a web page is written to the browser. When a web page is called, the server executes the server-based code inside the page before it … Read more