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

[REBOL] Re: Antwort: Antwort: Re: CGI HTML Editor-THE forgotten Script

From: rebol::techscribe::com at: 15-Nov-2000 1:14

Hi Sharriff, if I see it correctly, the only stuff that gets sent to the Web browser is the following [Sharriff--Aina--med-iq--de] wrote:
> print "Content-Type: text/html^/" > > print { <?xml version="1.0"?> > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd"> > <html > xmlns="http://www.w3.org/TR/xhtml1"> > <head> > <title>Add new Intranet page</title> > <style > type="text/css"> > p.c1 {font-family: Verdana,Tahoma,Arial,Helvetica; font-size: 80%} > </style> > </head> > <body > bgcolor="#666666"> > <form > action="" > enctype="text" > method="get" > name="newcontact"> > <table > border="1" > cellpadding="1" > cellspacing="0" > id="Table1" > width="75"> > <tbody> > <tr> > <td > bgcolor="gray">&nbsp;</td> > </tr> > > <tr> > <td > bgcolor="#666666">&nbsp;<input > type="submit" > name="submitButtonName" > value="Preview?" /></td> > </tr> > </tbody> > </table> > </form> > </body> > </html> > > }
whereas all of the programmatic stuff is only saved to a file? : write %../medintouch/intranet/intcontent.html newblock Or is the above Web page being displayed ok and are you having problems with subsequently displaying the file you constructed and saved programmatically only? Or both? Elan