Cookieless Forms Authentication in ASP.Net Forms authentication uses a cookie to identify a user. However, Forms authentication also supports a feature named cookieless authentication. When cookieless authentication is…
Dropdown Databound Lists in ASP.NET C#
how to populate the values of a drop down list with data from a database table. The tutorial also covers using where clauses to specify data selected in a GridView control based…
Retrieving Query Strings in Javascript The query string is composed of a series of field – value pair. Below is the pattern of query string:field1=value1&field2=value2&field3=value3An URL that contains query…
Page_Load in ASP.NET architecture The Page Life Cycle EventsPage_Load : The Page_Load event is triggered. This method can be used to populate and bind data to your controls either from the database or any other…
Page Life Cycle Events in ASP.NET architecture The sequence of events that are executed in the life cycle of a page.The following are these events, listed in the order in which they are executed:1. Page_Init2. LoadViewState3.…