Hi,
In my website
I have one master page name is CRM.master
Then i add one web form complaint.aspx.cs with select CRM.master page
My problem
In complaint.aspx.cs web form have one DropdownList name Cmbo_Station
i write the code page load event in complaint.aspx.cs is
protected void Page_Load(object sender, EventArgs e)
{
Cmbo_Station.Text = "Select";
}
i run the code but the text is not display
then i debug the code the problem is CRM.master page also having empty Page_Load event ie
In CRM.master
protected void Page_Load(object sender, EventArgs e)
{
}
so CRM.master page_Load event is executed.
How to avoid this i want execute complaint.aspx.cs Page_Load Event