page is the first object in the web applications
because in asp.net application when we create any web site and open the .cs file then first thing will appear is like this
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
Kasi, if this helps please login to Mark As Answer. | Alert Moderator