Thankyou for the reply.
Yes it was quite easy to do, for anyone who's interested I've put a snippet of the changes below.
In my case, I only have one parameter, the identifier for the record from the database to be displayed.
The BreadCrumb.ascx.cs file is located at ~\admin\Skins
Steve.
*****************************************************
The code before my changes at the bottom of the page
*****************************************************
strBreadCrumbs += "<a href=\"" + objTab.FullUrl + "\" class=\"" + strCssClass + "\">" + strLabel + "</a>";
}
}
lblBreadCrumb.Text = strBreadCrumbs;
******************************************
After my changes
******************************************
/* sjb - check for the ID parameter in the query string */
string urlParameters = "";
string urlIDParameterValue = Request.QueryString["ID"] ;
if (urlIDParameterValue != null)
{
/* sjb - recreate the query string*/
urlParameters = "?ID=" + urlIDParameterValue.Trim();
}
/* sjb - Append the query string to the url*/
strBreadCrumbs += "<a href=\"" + objTab.FullUrl + urlParameters + "\" class=\"" + strCssClass + "\">" + strLabel + "</a>";