From: Hudson R. <hud...@so...> - 2002-08-29 19:30:35
|
Hi all, In test.code/tdb03/tdb03.cob, in compilation, shows the following error: tdb03.cob: 73: bad formed display statement This error occurs for this: in line 71, the DISPLAY verb have been used incorrectly, see: PROCEDURE DIVISION. display "Content-type: text/html" display The correct way is: PROCEDURE DIVISION. display "Content-type: text/html" display x"00" I don't have access to cvs servers then, developers, could you fix the little fault in this program? Thanks. Hudson |