rlm@0: #!C:/strawberry/perl/bin/perl.exe rlm@0: rlm@0: # this is an example script of how you would use URLs to define rlm@0: # your CGI::Ajax functions. rlm@0: rlm@0: use strict; rlm@0: use CGI::Ajax; rlm@0: use CGI; rlm@0: rlm@0: my $q = new CGI; rlm@0: rlm@0: # the format here implies that 'convert_degrees.pl' is at the same rlm@0: # level in the web server's document root as this script. rlm@0: my $pjx = CGI::Ajax->new( 'myfunc' => 'convert_degrees.pl'); rlm@0: $pjx->JSDEBUG(1); rlm@0: rlm@0: my $Show_Form = sub { rlm@0: my $html = ""; rlm@0: $html .= < rlm@0: CGI::Ajax Outside URL Example rlm@0: rlm@0: rlm@0:
rlm@0: Degrees Centigrade:  rlm@0: rlm@0:
rlm@0: rlm@0: Degrees Kelvin:  rlm@0: rlm@0:
rlm@0: rlm@0: rlm@0: EOT rlm@0: rlm@0: return $html; rlm@0: }; rlm@0: rlm@0: print $pjx->build_html($q,$Show_Form); # this outputs the html for the page