.Net Framework Control, ASP.NET Controls The ASP.NET Framework contains over 70 controls.
You should always assign an ID attribute to every control even when you don’t need to program against it.
. Standard…
Using Hierarchical DataBound Controls in ASP.Net A hierarchical DataBound control can be used to display nested data items. For example, you can use hierarchical DataBound controls to display the folder and page structure of the…
Datalist Control in ASP.Net DataList is a data bound list control that displays items using certain templates defined at the design time. The content of the DataList control is manipulated by using templates…
Partial Class Example, Partial Classes in ASP.Net 2.0 It is possible to split the definition of a class or a struct, an interface or a method over two or more source files. Each source file contains a section of the type or method…
ASP.NET Pipeline The HttpApplication is responsible for the request flow by firing events that signal your application that things are happening. This occurs as part of the HttpApplication.Init()…
How to add and remove an assembly from GAC ? There are two ways to install .NET assembly in GAC:-
√ Using Microsoft Installer Package. You can get download of installer from http://www.microsoft.com.
√ Using Gacutil. Goto…
Application Life Cycle Events in ASP.NET architecture Application Life Cycle EventsWhenever event occurs on the web page, the request is sent to the web browser; in our case, let the web server be IIS.The IIS picks up this request…
Free Domain Names Web Hosting Provider A domain name makes up the address of your site and can end in .com, .net, .org, .info, .us, .biz, .tv and more.
Once you have registered your name, you will select a web host.…
Reference Types Data in ASP.Net C# Variables of reference types, referred to as objects, store references to the actual data. This section introduces the following keywords used to declare reference…