Hi,
Is there a way to set the (value="") in a HTML file prior to the display.
I'm using FUJITSU 6.1 COBW3 CGI routines.
I'm trying to populate data fields with information prior to using
COBW3_PUT_HTML.
In the following I'm trying to change the input field value from 0000000 to abababa
The abc.htm is contains
<input type="text" name="FIELD-ID" value="0000000" size="7">
DISPLAY-HTML.
SET COBW3-CNV-MODE-ADD-REP TO TRUE
MOVE "FIELD-ID" TO COBW3-CNV-NAME .
MOVE "abababa" TO COBW3-CNV-VALUE .
CALL "COBW3_CNV_SET" USING COBW3 .
MOVE "ABC.HTM" TO COBW3-HTML-FILENAME.
CALL "COBW3_PUT_HTML" USING COBW3.
I get the following error on the browser.
COB-06105: COBW3 :A conversion name in the HTML document was not registered using COBW3_CNV_SET.
please register the conversion data using COBW3_CNV_SET.
Thanks in advance
JIH
Is there a way to set the (value="") in a HTML file prior to the display.
I'm using FUJITSU 6.1 COBW3 CGI routines.
I'm trying to populate data fields with information prior to using
COBW3_PUT_HTML.
In the following I'm trying to change the input field value from 0000000 to abababa
The abc.htm is contains
<input type="text" name="FIELD-ID" value="0000000" size="7">
DISPLAY-HTML.
SET COBW3-CNV-MODE-ADD-REP TO TRUE
MOVE "FIELD-ID" TO COBW3-CNV-NAME .
MOVE "abababa" TO COBW3-CNV-VALUE .
CALL "COBW3_CNV_SET" USING COBW3 .
MOVE "ABC.HTM" TO COBW3-HTML-FILENAME.
CALL "COBW3_PUT_HTML" USING COBW3.
I get the following error on the browser.
COB-06105: COBW3 :A conversion name in the HTML document was not registered using COBW3_CNV_SET.
please register the conversion data using COBW3_CNV_SET.
Thanks in advance
JIH