Connecting Tech Pros Worldwide Help | Site Map

How to get html button click event in perl?

Newbie
 
Join Date: Sep 2008
Posts: 8
#1: Oct 8 '08
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's Avatar
Moderator
 
Join Date: Jul 2007
Location: Arkansas
Posts: 900
#2: Oct 8 '08

re: How to get html button click event in perl?


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
Newbie
 
Join Date: Sep 2008
Posts: 8
#3: Oct 8 '08

re: How to get html button click event in perl?


Quote:

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..

Expand|Select|Wrap|Line Numbers
  1.         print "<input type='submit' name='submit' value='submit'>";
  2.         print "</td>";
  3.         print "</tr>";
  4.  

Thanks a lot for the proper guidance and proper advise for posting the Query on forums.Now onwards i will take care of it..
KevinADC's Avatar
Expert
 
Join Date: Jan 2007
Location: Southern California USA
Posts: 4,091
#4: Oct 8 '08

re: How to get html button click event in perl?


Quote:

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..

Expand|Select|Wrap|Line Numbers
  1.         print "<input type='submit' name='submit' value='submit'>";
  2.         print "</td>";
  3.         print "</tr>";
  4.  

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?
numberwhun's Avatar
Site Moderator
 
Join Date: May 2007
Location: New Hampshire
Posts: 2,569
#5: Oct 8 '08

re: How to get html button click event in perl?


Quote:

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..

Expand|Select|Wrap|Line Numbers
  1.         print "<input type='submit' name='submit' value='submit'>";
  2.         print "</td>";
  3.         print "</tr>";
  4.  

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
Reply