tag

home / developersection / tag

ASP.NET  Page Life Cycle
asp.net 08-Nov-2010
ASP.NET Page Life Cycle

1-PreInit2-Init3-InitComplete4-Preload5-Load6-Control Events7-Load Complete8-PreRender9-PreRenderComplete10-SaveStateComplete11-Render12-Unload The fi

Session-State in ASP.NET
asp.net 06-Nov-2010
Session-State in ASP.NET

ASP.NET provides three distinct ways to store session data for your application: in-process session state, out-of-process session state as a Windows s

View State in ASP.NET
asp.net 06-Nov-2010
View State in ASP.NET

The web is state-less protocol, so the page gets instantiated, executed, rendered and then disposed on every round trip to the server. The developers

Directives in ASP.NET
asp.net 06-Nov-2010
Directives in ASP.NET

@Page: Defines page-specific attributes used by the ASP.NET page parserand compiler. Can   be included only in .aspx files  @Control:Defines contro

Caching in asp.net
asp.net 06-Nov-2010
Caching in asp.net

Caching is a technique widely used in computing to increase performance by keeping frequently accessed or expensive data in memory. In context of web

How To Send Email Using System.Web.Mail
asp.net 05-Nov-2010
How To Send Email Using System.Web.Mail

Here in this blog I am trying to explain you about sending emails in ASP.NET by using namespace System.Web.Mail.using System.Web.Mail; try strin

Server.Transfer: how use it
asp.net 31-Oct-2010
Server.Transfer: how use it

Server.Transfer Passing data from onepage to another we use Server.Transfer and other method. Server.Transfer isprovide more efficient result as compa

HiddenField in ASP.NET
asp.net 30-Oct-2010
HiddenField in ASP.NET

The HiddenField control provides you with a way to store information in the page without displaying it. This control enables a developer to store a no

DropDownList in ASP .Net
asp.net 30-Oct-2010
DropDownList in ASP .Net

   A simple declaration for DropDownList can be done as below.   If we want to add some items statically it can be added inside the Page as follows.S

How We Create Query String in Asp.net
asp.net 25-Oct-2010
How We Create Query String in Asp.net

The Use of query string in web application We pass the value from one page to another page by query string, we write the syntax as1) Response.Redirec