You're using this, right?

print "Content-type: text/html^/"

'print adds it's own newline after printing the string.  So all you (should) 
need to do is either remove the "^/", or use 'prin.

> It looks like in cases of KFWS and Abyss, the web server
> already sent this blank line.
> :(
>
> Janeks
>
> On 23 Apr 2006 at 18:18, [EMAIL PROTECTED] wrote:
>
>>
>> Janeks:
>>
>> > So the question is how to manage setting of cookie
>> >  values in such cases?
>>
>> What should happen is that you print all headers *before* the first
>> blank
>> line -- ie the ^/
>>
>> So you can set a cookie like this:
>>
>> print "Content-type: text/html"
>> print "Set-Cookie: name=xxxxxxx"
>> print ""    ;; end of headers
>> print   ;; start of content
>>
>> Sunanda.
>> -- 
>> To unsubscribe from the list, just send an email to
>> lists at rebol.com with unsubscribe as the subject.
>>
>>
>
>
>
> -- 
> To unsubscribe from the list, just send an email to
> lists at rebol.com with unsubscribe as the subject.
> 

-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to