Runtime Control

Create Runtime Control

In asp.net sometimes we need to create control at run time instead of compile time. In this article I am discussing how to create control at runtime.

Remember your first program in asp.net where you create sum of two numbers. At that time you create control at the compile time and show output on button click.

Runtime control in asp.net

Add Click Event for Runtime Control

In my last article I discussed how to create control at runtime. Now I am discussing that if we want to make any event on any control then how we generate. To understand the concept of event you must have the knowledge of Delegate

Events for runtime control

Ajax in Asp.net

Ajax implementation in asp.net

Ajax is platform independent technology. AJAX stands for Asynchronous JAvascript and Xml. Asynchronous refers to the events that are happening in the background independently from the main application flow.

Ajax in asp.net

How to Upload image in Asp.net

In this article I am representing how to store images in folder and show in the gridview.

upload image in asp.net


Gridview in Asp.net

Gridview is used to show the data on your Screen from database. In this article I will explain how to work with gridview. Following are some functionality which we can perform on gridview.

grid view in asp.net


Themes in Asp.net

Sometimes we need to change the layout of application for different-different user. For example if a single application is used by different-different client and every client has his own color schema, logo, font etc. requirements then we use themes A theme is a collection of skin files, css, graphics, images etc.

Themes in asp.net


How to Call Stored Procedure in asp.net

Stored procedure is the precompiled form of queries which executed to perform some task. We can also call stored procedure using Ado.net.

How to call store procedure