Hello;
What i am trying to accomplish is a simple breadcrumb asp script, the way I am doing it now is with simple html and i would like to convert all of them to asp. Is there a easy way of doing this? Here is what i am doing:
Code:
<p><a href="intro_e.asp">Cadet Corps/Squadron Directory</a> » <a href="sear-rech_e.asp">Search</a> »</p>
and by going with something like http referer or something.. could someone give me a example of a ASP breadcrumb with the above example please so that i could work on it and modify it to my needs.
PS: Also i have some pages that connects trough a database and it keeps the same URL but the end of the URL changes that makes it a new page example:
postal_search_f.asp
has this for breadcrumb:
Code:
<p><a href="intro_e.asp">Cadet Corps/Squadron Directory</a> »</p>
the output would be: [u]Cadet Corps/Squadron Directory</u> >>
postal_search_f.asp?search=A0A&Submit=Recherche+de +code+postal
I want this for the breadcrumbs
Code:
:<p><a href="intro_e.asp">Cadet Corps/Squadron Directory</a> » <a href="sear-rech_e.asp">Search</a> »</p>
The output would be: [u]Cadet Corps/Squadron Directory</u> >> [u]Search</u> >>
But since its the same page how can I accomplish this?
Thanks and have a great day.