Perl CGI Drag n Drop


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Perl CGI Drag n Drop
# 1  
Old 08-05-2014
Perl CGI Drag n Drop

Hi Perl Coders,

I am grateful to anyone who can tell me if its possible to create drag n drop functionality within Perl. I know there are multiple GUI libraries out there, ie. Qt, Tk, wxWidget, etc., but wanted to ask first before hunting, if anyone knows if it is possible and also in particularl, whether it is possible within a Perl CGI script, ie. from within the cgi-bin, on Linux.

Many thanks.Smilie
# 2  
Old 08-05-2014
drag-and-drop in CGI is completely unrelated to Qt, TK, and TuxWidget, since it's going to of necessity going to end up being pure HTML.

If you can do it in HTML, you can do it in CGI Perl.
# 3  
Old 08-05-2014
Thanks for quick reply corona. SmilieSmilie

Can I ask how I would go about doing so in CGI.

Thanks.
# 4  
Old 08-05-2014
Again, it's an HTML thing. Make your Perl -- or shell, C, ruby, PHP, or whatever else code print the correct HTML. The base of it happens client-side, in javascript.

See this information.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. OS X (Apple)

Perl CGI

I am trying to get my MacBook Pro with 10.8 Mt Lion set up to run Perl CGI scripts. Having a problem. I can start Apache Web Server with no problems. Why do I put the static and dynamic scripts? I which directory? I have looked at this article:... (3 Replies)
Discussion started by: djehresmann
3 Replies

2. Shell Programming and Scripting

CGI Perl : while loop in CGI perl

Hi Team, I am trying to connect to database(succeeded ) and print the records on the browser using while loop. But the elements of array are not displayed instead while loop is displayed directly. Instead of the below I can embed html statements in print but I am looking for the below style as I... (1 Reply)
Discussion started by: scriptscript
1 Replies

3. Shell Programming and Scripting

Perl CGI : unable to download the excel sheet from perl cgi page

Hi All, I have written an cgi perl script that displays an image(Excel image) and when clicked on that Image I need to download a excel sheet. I made sure that excel sheet exists in the folder with the given name but still I am not able to download the sheet. print "<center><table... (2 Replies)
Discussion started by: scriptscript
2 Replies

4. Shell Programming and Scripting

Perl cgi pages out of cgi-bin folder in WINDOWS

Hi team, I have a typical problem with cgi pages in apache webserver in WINDOWS I am able to execute(display) the pages that are saved in cgi-bin folder. But I am not able to execute the pages stored in htdocs or other folder other than cgi-bin folder. Could anyone please let me know how... (1 Reply)
Discussion started by: scriptscript
1 Replies

5. Shell Programming and Scripting

How to select a particular field from a drop-down menu in a webpage using perl script?

Hi Team, I have a requirement to login into URL using username and password , then I have to select a "particular name" from drop-down menu and then Read the values user records etc.... using perl. Is it possible to do in perl script ? (OR) Can you please let me know which scripting... (1 Reply)
Discussion started by: latika
1 Replies

6. Red Hat

FTP drag & drop

I have enabled FTP for my RHEL 5.8 server. I want to drag a file from my windows session and drop it to the FTP browser session but I am not able to do it as the file is not dragging. I hope my query is clear that the drag & drop from the windows session to the FTP browser session running on Red... (5 Replies)
Discussion started by: RHCE
5 Replies

7. Shell Programming and Scripting

CGI in Perl

Hi, Am unfamiliar with using CGI modules in Perl. Though i checked in few sites about CGI , i dint get a clear idea. Can anyone please explain me the purpose of these statements, it ll be very helpful to me #!/usr/bin/perl use CGI qw/:standard/; use Storable; use Data::Dumper; my... (1 Reply)
Discussion started by: irudayaraj
1 Replies

8. Web Development

problem with exporting vairable from one perl cgi to another perl cgi script while redirecting.

Can anyone tell me how to export a variable from one perl CGI script to another perl cgi script when using a redirect. Upon running the login.pl the user is prompted to enter user name and password. Upon entering the correct credentials (admin/admin) the user is redirected to welcome page. My... (3 Replies)
Discussion started by: Arun_Linux
3 Replies

9. UNIX for Dummies Questions & Answers

Drag and drop items in plain html page

Hello, Am looking for a tool / open source framework that could do the following. A plain html page, with some toolbox at the border of the page where the tool box contains individual tool that represents operation like "extend fleet", "add drives", "backtrack" or something of that sort. ... (1 Reply)
Discussion started by: matrixmadhan
1 Replies

10. UNIX for Dummies Questions & Answers

Trans application cut, copy and paste? Drag and Drop

I'm using Red Hat 8 and I'm really fustrated with cut and paste. When I am viewing a URL in emacs I cannot paste it into the browser address window. Yesterday, I tried VI (or was it VIM?) and it recognized it as a URL and allowed me to right mouse click on it and brought up the browser with... (1 Reply)
Discussion started by: siegfried
1 Replies
Login or Register to Ask a Question