Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

calling perl subroutine on selecting the values in list box?

by anbutechie (Sexton)
on Apr 27, 2009 at 06:35 UTC ( [id://760275]=perlquestion: print w/replies, xml ) Need Help??

anbutechie has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

I m using CGI module, I have created a web page which contains a list box,On selcting any value in list box i need to call perl subroutine by passing the selected. How is it possible?.

Regards,
Anbarasu

  • Comment on calling perl subroutine on selecting the values in list box?

Replies are listed 'Best First'.
Re: calling perl subroutine on selecting the values in list box?
by dorward (Curate) on Apr 27, 2009 at 07:05 UTC

    It isn't, at least not directly. (Unless you are using a client side PerlScript plugin (which I've never seen available for a browser other then MSIE and never seen used in the wild).)

    There is an indirect approach though.

    1. Register an onchange event handler using JavaScript.
    2. When it fires make an HTTP request (e.g. with XMLHttpRequest or setting the location property).
    3. Use the information in the request in your server side program to run the routine you want.

    A JS library such as YUI will do most of the heavy lifting for you. Make sure you use progressive enhancement to ensure your system is robust.

      While the original post doesn't require a dynamic (AJAX based) solution, here is a simpler one:

      • 1. (As before) Register an onchange event handler using JavaScript
      • 2. When it fires, call a CGI script, run the desired subroutine and load the resulting page.

      Using a template system like HTML::Template could also be useful.

      citromatik

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://760275]
Approved by moritz
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (8)
As of 2024-04-18 08:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found