how can we add button to a html page using CGI wrapper web object?

seenunandagiri

New Member
hi,

I can display table data using <table> attribute in a web page but in adding a button I am getting error....can u help me in adding a button or text box in a web page using CGI wrapper web object....?
 
Just plain html, nothing webspeedish about it.
Look into the input tag: type="text'' and type="button".

Casper.
 
Hi Casper,

I tried with the following code to create a text box using CGI wrapper web object,

{&OUT}
"<INPUT TYPE="TEXT" VALUE="TEST">:U SKIP
.

But I am getting following error message in web tools,

  • ** Unable to understand after -- "<INPUT TYPE=TEXT"". (247)
    ** Could not understand line 195. (198)

    help me in solving the problem.
 
You have to escape the double quotes like:
{&OUT}
"<INPUT TYPE=~"TEXT~" VALUE=~"TEST~">":U SKIP
.

That is one of the reasons I don't like cgi wrapper.
I'd rather maken an .html page with embedded speedscript.

Casper.
 
Hi Casper,

I am using folllowing code to navigate to the next page in CGI wrapper, but it is not working. Can you suggest me how we can achieve this.I am new to the progress. So, please help me.

{&OUT}
"<INPUT TYPE=~"submit~" VALUE=~"SUBMIT~">":U SKIP
"<FORM action=~"sample1.htm~">":U SKIP
.
 
Back
Top