anyone has done this kind of perl/CGI?
am 14.04.2008 04:41:55 von robertchen117
I want to make a cgi page like this:
there are 5 steps button, click one by one and get the step output.
Cgi should looks like this:
please click on each steps:
Step I button
step I execute output here:
then step II button:
step II output here:
.....
the difficult part is the output is just below each steps' button. I
do not how to do it. Please help me.
Robert
Re: anyone has done this kind of perl/CGI?
am 14.04.2008 17:52:42 von glex_no-spam
robertchen117@gmail.com wrote:
> I want to make a cgi page like this:
CGI pages don't look like anything, it's the HTML that a CGI might
generate.
>
> there are 5 steps button, click one by one and get the step output.
>
> Cgi should looks like this:
>
> please click on each steps:
>
> Step I button
>
> step I execute output here:
>
> then step II button:
>
> step II output here:
>
> ....
>
> the difficult part is the output is just below each steps' button. I
> do not how to do it. Please help me.
Show us what you have done. Initially it looks like AJAX would
be a possible piece, so that'd be a topic to start reading. A
library like Prototype might handle most of the interface issues
for you. Your CGI could simply take arguments and generate the
output that you'd display after the button.
You could also have your CGI do everything and there are plenty of
CGI tutorials on the Internet.