[REBOL] sending 'none to CGI
From: rchristiansen:pop:isdfa:sei-it at: 10-Jan-2001 13:01
If I send the following text/html output to the user
{<A HREF="http://www.domain.dom/cgi-bin/script.cgi?value=} none {>}
and he or she clicks on the resultant link, what value will be passed
to CGI? Will it be a 'none value REBOL can understand? Using the
console, the results seems to be correct.
>> print (rejoin [{<A HREF="http://www.domain.dom/cgi-bin/script.cgi?value=} none {>}
])
<A HREF="http://www.domain.dom/cgi-bin/script.cgi?value=none>
-Ryan