Page.ISpostback is getting multiple when first time page load it's getting 5 times and when ever i click button or DropDownlist (!PAGE.ISPOSTBACK) loads multiple Time.I searched in Google Some one said because of Ajax it's getting multiple Times but he did not said how to solve. Kindly help me to how to solve. Thanks in Advance
my code
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
//gvbind();
grid();
year();
Dropdown();
Button1.Visible = false;`
}
}