How to get html button click event in perl?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • talk2mishal
    New Member
    • Sep 2008
    • 8

    How to get html button click event in perl?

    Hi,
    As i m newbie for the Perl With Html Button.
    The scenario is like this:
    • I have HTML button in the perl Script.
    • I have to get the Data of Enable checkbox Data using the button click event in perl
    • And I have to copy/cut that Enable checkbox Data to the Other Folder in the SystemAnywhere.



    Please provide some Source code or links.

    Thanking you with an anticipation in advance.
  • eWish
    Recognized Expert Contributor
    • Jul 2007
    • 973

    #2
    What have you tried? Check out the CGI.pm documentation. There are plenty of examples.

    In the future please post sample code that you have tried and show effort. Otherwise help may be hard to come by.

    --Kevin

    Comment

    • talk2mishal
      New Member
      • Sep 2008
      • 8

      #3
      Originally posted by eWish
      What have you tried? Check out the CGI.pm documentation. There are plenty of examples.

      In the future please post sample code that you have tried and show effort. Otherwise help may be hard to come by.

      --Kevin
      yes Sir,

      I have tried for that ...But it was not generating the proper output so i have directly asked the question which i have..The code which i have tried bfr that i m posting here..

      Code:
              print "<input type='submit' name='submit' value='submit'>";
              print "</td>";
              print "</tr>";

      Thanks a lot for the proper guidance and proper advise for posting the Query on forums.Now onwards i will take care of it..
      Last edited by numberwhun; Oct 8 '08, 12:03 PM. Reason: Please use code tags

      Comment

      • KevinADC
        Recognized Expert Specialist
        • Jan 2007
        • 4092

        #4
        Originally posted by talk2mishal
        yes Sir,

        I have tried for that ...But it was not generating the proper output so i have directly asked the question which i have..The code which i have tried bfr that i m posting here..

        Code:
                print "<input type='submit' name='submit' value='submit'>";
                print "</td>";
                print "</tr>";

        Thanks a lot for the proper guidance and proper advise for posting the Query on forums.Now onwards i will take care of it..
        err...... what is that supposed to do? All that is is a submit button. Is there some html form code to go with that and a server side script the form sends its data to?

        Comment

        • numberwhun
          Recognized Expert Moderator Specialist
          • May 2007
          • 3467

          #5
          Originally posted by talk2mishal
          yes Sir,

          I have tried for that ...But it was not generating the proper output so i have directly asked the question which i have..The code which i have tried bfr that i m posting here..

          Code:
                  print "<input type='submit' name='submit' value='submit'>";
                  print "</td>";
                  print "</tr>";

          Thanks a lot for the proper guidance and proper advise for posting the Query on forums.Now onwards i will take care of it..
          Thank you for trying to use code tags, but you need to please learn to use them correctly. There is an example to the right of your reply Message box in the Reply Guidelines. If you look at it, it shows that the tags are using square brackets, not curly brackets (don't hit shift) and that the closing tag is closed in the same manner as an HTML tag is closed.

          Regards,

          Jeff

          Comment

          Working...