Hello all,

I have an interesting riddle for you:

I log into my application, which immediately calls my Home page. My log 
looks like this:

Home.attach()
... some other stuff...
Home.detach()

It look fine. Then I click on a PageLink to my Month page. However, now 
my log looks like this:

Month.attach()
... some stuff ...
Month.detach()
Home.attach()
Month.attach()

They are occurring consecutively, just like I've written them out. I 
definitely have NO CLUE as to why Home is being attached or even why 
Month is being attached. If I keep clicking differing PageLinks (never 
again clicking Home or Month), I get

Day.attach()
... stuff ...
Day.detach()
Home.attach()
Day.attach()
Month.attach()

and so on...

Anyone have an idea?

-Jason



-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Tapestry-developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/tapestry-developer

Reply via email to