Caching (?) problem in web applications

hi!

i have a simple web application on which you have a frameset. on the left a navigation, on the right a login form. after login i refresh my navigation. in my navigation i have a computed text with a formula switching the text if @username is Anonymous or not.

on my notes 5 server it is running perfectly. on the 6 server the refresh does nothing. after ~10 minutes sometimes i see the right value after a refresh…

is this a server parameter or what can i do?

Subject: caching (?) problem in web applications

on the page/form/view you use for the navigation (where the @Username is used), put , wherever u want (I do it on HTMLHead field);

@SetHTTPHeader(“Expires”;@Now);

@SetHTTPHeader(“Cache-control”;“No-cache”);

Subject: RE: caching (?) problem in web applications

thanks! that works…