Hi everybody Is it possible to save some data and keep it for the whole visit of the page? I'd like to save e.g. if frames are used or not and every page should be able to evaluate this var (e.g. frames=true or false). Is that possible with Zope or not? Sven -- PGP-Key-ID: 0x881BF222
At 02:08 16/08/99 , Sven Kirmess wrote:
Hi everybody
Is it possible to save some data and keep it for the whole visit of the page?
I'd like to save e.g. if frames are used or not and every page should be able to evaluate this var (e.g. frames=true or false).
Is that possible with Zope or not?
Zope is a Web Application server, runs HTTP, and HTTP is a connectionless, thus stateless protocol. But you can ask the client to store some information for you, and to present that information every time it returns to your server: cookies. See the DTML guide for more detail son cookies. -- Martijn Pieters, Web Developer | Antraciet http://www.antraciet.nl | Tel: +31-35-7502100 Fax: +31-35-7502111 | mailto:mj@antraciet.nl http://www.antraciet.nl/~mj | PGP: http://wwwkeys.nl.pgp.net:11371/pks/lookup?op=get&search=0xA8A32149 ------------------------------------------
Monday, August 16, 1999, 10:53:42 AM, Martijn wrote:
Zope is a Web Application server, runs HTTP, and HTTP is a connectionless, thus stateless protocol. But you can ask the client to store some information for you, and to present that information every time it returns to your server: cookies. See the DTML guide for more detail son cookies.
Unfortunateli cookies aren't a solution becourse too much people deactive them... Sven -- PGP-Key-ID: 0x881BF222
On Mon, 16 Aug 1999, Sven Kirmess wrote:
Monday, August 16, 1999, 10:53:42 AM, Martijn wrote:
Zope is a Web Application server, runs HTTP, and HTTP is a connectionless, thus stateless protocol. But you can ask the client to store some information for you, and to present that information every time it returns to your server: cookies. See the DTML guide for more detail son cookies.
Unfortunateli cookies aren't a solution becourse too much people deactive them...
See the discussion a bit earlier about auto-generating query strings. I think the safest way is to auto-wrap the session onto every url - that way you don't need to worry about the user aborting 1/2 way through the session. Thats why I suggested it the way I did - server blobs can be a nightmare if ppl abort 1/2 way thru Cheers, Anthony Pfrunder
participants (3)
-
Anthony Pfrunder -
Martijn Pieters -
Sven Kirmess