Understanding Asp.Net Ajax Controls

  AJAX: Ajax Stands for Asynchronous javascript and XML. Ajax is a cross-platform technique which speeds up response time. The Ajax server controls add the script to the page which is executed and processed by the browser. Asp.Net Ajax made up Read More …

Understanding Asp.Net Validators Techniques

  Introduction: In this article, we discuss understanding the basic Asp.Net validation techniques and controls. We will try to understand which validation control should be used in any particular scenario and then make a small web application to illustrate the use of validation controls. Read More …

Directives for ASP.NET Web Forms

  Asp.Net Directives : Asp.Net Page directives are something that is one of the important   part of every Asp.net pages. Page directives are instructions, inserted at the top of an Asp.Net page, to control the behavior of the asp.net pages. Read More …

Data Cache in Asp.Net

  Introduction Caching is the process of storing frequently used data and information in memory. so that,when the same information or data is needed next time, it could be directly retrieved from the memory instead of being generated by the application. Read More …

Top 7 New Features of C# 7.0

In C# 7, a lot of new features have been introduced, and also enhancement have been done for some features. Given below is the list of features which I am going to explain in this article. Learn – C# Basics 1. Read More …

Top 15 Asp.Net MVC Interview Questions with Answers

1.What is MVC (Model view controller)? Model–view–controller (MVC) is a software architectural pattern for implementing user interfaces. It divides a given software application into three interconnected parts, so as to separate internal representation of information from the way that information is Read More …

Facebook login in ASP.NET Core

Introduction : Being Easy to have your users authenticate using Google, Facebook, Twitter, etc is a great way to remove the annoyance of having to create a local account and go through the email validation process. Here we can access the website Read More …

Garbage Collection in C#

Introduction to Garbage Collection in C#: Memory management is the main concern for any application whether the application is window based or web-based. In .NET Framework, CLR has a garbage collector that executes as a part of our program and Read More …