I have a page with a few panels. Depending on which panel is visible I want to show the page breadcrumb.
The page breadcrumb is quite basic and on page load I would like to alter this.
this is how my breadcrumb works:
Master.PageBreadCrumb = "<a href=\"../default.aspx\">Home ></a>" + " Membership Application Form";
On certain click events of buttons I want the page load to alter the the bread crumb.
if (pnl_Application_Forms.Visible)
{
Master.PageBreadCrumb = "<a href=\"../default.aspx\">Home ></a>" + " Membership Application Form";
}
if (pnl_thank_you.Visible)
{
Master.PageBreadCrumb = "<a href=\"../default.aspx\">Home </a>" + " Thank you";
}
my buttons ar ...
Go to the complete details ...