Event Handling In Asp.Net

Definition of Event Handling In Asp.Net: The events are raised by the client. The server handles all the event requests. If the user presses a key, the key press event is raised. The server handles the key press event. The Read More …

Multithreading in Asp.Net

Introduction : In this article we will discuss about Multithreading programming. Sometimes you need to perform a long time task, that uses intensive CPU operations. Sometimes you are acquiring a database and waiting for the results. Not to mention when we are Read More …

DotNet Match quiz

Match Questions to Right answers:- Learning is always FUN!! Let’s learn DotNet in OLD School Method. Are you an expert in .Net? Try to match the right answers to the following questions. Questions Options 1. Logical Grouping of class 1. Read More …

Top Skills a Dot Net Developer Must Have

Introduction: Skills and Responsibilities of Good Dot Net Developer: Microsoft Dot Net is one of the software  development component. It provides tools and libraries to the software developers so that they can create software applications in a more efficient manner. If Read More …

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 …