Hey noel, thank you, it works perfectly.<br><br>However, i have the following problem : i can't modify my cookie-value ...<br>my blog starts with <br>(define start request)<br> ( my-home-page request))<br><br>next,<br>
(define (my-home-page request)<br> (define foo (make-cookie "id" "my-content") <br> (set! foo (set-cookie "id" "another content") ;; so now the content of the cookie has changed<br>
...<br> `(html (body (p ,(print-cookie foo))<br> (a (href 'a-link to (a-post request))" "link")<br>))))<br><br>;;;;;<br>(define (a-post request)<br> (set! foo (set-cookie "id" "master content")) ;; here, why can't modify my cookie value ?<br>
...<br>)))<br><br>(serve/servlet start)<br><br>I don't understand : i start my blog wich calls (my-home-page), and this one creates a cookie. But in (a-post request) i can't i modify my cookie, because foo is an unknown word ...<br>
How can i retrieve the content of my cookie in my (a-post ...) function ?<br><br>thanks for your help,<br>-mw<br>