Posted on: 4/1/2015 4:04:49 PM | Views : 669

Dear All,
I have 4 tabs "A","B","C" and "D". Tab A is selected my default. When I go from tab "A" to any other tab the following event fires
protected void tabT_ActiveTabChanged(object sender, EventArgs e) {      Session["TabIndex"] = null;      Session["TabIndex"] = tab.ActiveTabIndex;      if (Request.QueryString["id"] == null)     {          Response.Redirect("products.aspx?id=" + Session["pkid"]);      }
}

which is working correctly.  But I want the same thing to happen when I click the default tab "A".  The problem is that the above ActiveTabChanged event does not  get fired when the default tab is clicked.  I want the above event to get fired when the default tab is al ...

Go to the complete details ...