The next version of ASP.NET is ASP.NET 5 which has been redesigned from the ground up. ASP.NET 5 supports the concepts that are expected in any modern web application like deploying on cloud and loosely coupled applications. Some of the new features … [Continue reading] about WebAPI in MVC 6
Tracing in ASP.NET
In the following article we will see how to use Tracing in ASP.NET. While developing ASP.NET applications we often need to identify the problem in the application. Tracing can help us identify and resolve the issues in the application. Tracing in … [Continue reading] about Tracing in ASP.NET
Validation in ASP.NET MVC Using the Data Annotations
The validation of data is required in every web application to ensure that the user has entered the correct data. In ASP.NET web form developers use the validators to verify the data. Validators such as the required field validator ensures that the … [Continue reading] about Validation in ASP.NET MVC Using the Data Annotations
HTTP Request in ASP.NET
In ASP.NET to process requests a pipeline model is used which consists of HTTPModules and HTTPHnadler objects. This pipeline model forms the low level framework which is used by web pages and web services. Here we will see a high level overview of … [Continue reading] about HTTP Request in ASP.NET
Understanding HTML Helper Methods in MVC
HTML Helper methods are used to generate HTML in ASP.NET MVC. Helper methods are used to render HTML in the view. Helper methods generates HTML output that is part of the view. They provide an advantage over using the HTML elements since they can be … [Continue reading] about Understanding HTML Helper Methods in MVC