I have an Inet routine for oecgi2 that includes a write_row statement. When it returns html to the browser, it tags on and SSP615 message indicating the row was successfully written. How can I suppress this message? If I look at the page source, it appears after the final tag.
Add a line, either in the program where you use write_row or in Inet_Finalize, to clear the status information set by Write_row, e.g.
Call Set_Status(0)
Versions of OECGI2.exe dated November 2000 or so pass status() information through to the browser. Newer versions, dated after June 2008 do not pass taht information back. WRITE_ROW sets status on success or failure, so a successful
Set_Status(0) worked. Thanks!