Page navigator

  • Thread starter Thread starter Toma¾ Mlakar
  • Start date Start date
T

Toma¾ Mlakar

Hello



I'am writing an ASP.NET application and would like to have a page navigator
on every page.

Navigator would look like this: Start page -> Page 1 -> Page 1.1.

I would like as generic solution as I can get. I'am thinking of putting some
user control on every page that will automatically render the navigator for
that page.



Any ideas?



Tomaz
 
Hi,

I have done it using my base Page class and listbox to show the calling
route. I generate for every page GUID to identify it (to know if the
user return to page1.aspx that I already add to the path). In my base
class code I check if page is new one and then add it as a child to his
father (caller) and to the list box. My mechanism enables programmers to
add data for every page and to get that data when the page recall
(basically it’s a stack).

Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114

Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377

Know the overall picture
 
Back
Top