I have the following case:
Page1.aspx
this page has the master page master.aspx
.
I have some code in the master page :
if (!Page.IsPostBack)
{
adjustServiceBar();
}
when i click any button in the Page1.aspx
it enters the !Page.IsPostBack
and execute the method !!
i want this method in the !Page.IsPostBack)
only