Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[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