category

home / developersection / category

Difference between asp and asp.net?
asp.net 11-Dec-2010
Difference between asp and asp.net?

In ASP.Net it is very easy to drag and drop a button control and double click on the button to write the event handler for the button click event. When you click on the button at turn time, it will execute whatever code you have written in the event handler.

Web Services in ASP.Net
asp.net 11-Dec-2010
Web Services in ASP.Net

A webservice is typically an application programming interface (API) or WebAPI that is accessed via Hypertext Transfer Protocol (HTTP) and executed on

How to view information in ViewState using ASP.NET 2.0 and 3.5
asp.net 02-Dec-2010
How to view information in ViewState using ASP.NET 2.0 and 3.5

Http is a stateless protocol. Hence the state of controls is not saved between postbacks. Viewstate is the means of storing the state of server side c

Login Status Control in ASP.NET 3.5
asp.net 02-Dec-2010
Login Status Control in ASP.NET 3.5

The Login Status control displays a login link for users who are not authenticated and a logout link for users who are authenticated. The login link t

Different Navigation in ASP.Net
asp.net 30-Nov-2010
Different Navigation in ASP.Net

DifferentNavigation in ASP.Net ASP.NETsupports following ways to navigate between pages in your application.HyperlinkControlResponse.RedirectMethodSe

Populate Records in Second Listbox According to the Selection in First List box
asp.net 29-Nov-2010
Populate Records in Second Listbox According to the Selection in First List box

Suppose you have two list box, ListBox1 and ListBox2 and you want to populate values of ListBox2 according to the selection in ListBox1 then it’s very

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