0
votes
2answers
56 views

How to sort textbooks by type by color code, or category in bookweb using html, javascript, css or other?

I am currently trying to sort a textbook list that is generated dynamically by bookweb ( a bookshop cart solution). I want to order the cart by the textbook type either prescribed or recommended. ...
0
votes
1answer
44 views

Accessing fields with Python CGI FieldStorage from a JQuery AJAX call

I have written some JQuery that makes an ajax call to a Python script. I've been successful in passing strings back and forth between them, but I'm getting weird behaviour from the CGI FieldStorage ...
0
votes
1answer
51 views

perl cgi talks to javascript

I want to retrieve a csv file from one online database. However, due to some XSS issues, I cant directly use ajax, but need to relay on a perl-cgi file. I already had a working perl-cgi file that can ...
0
votes
1answer
20 views

Using the replace() function in Python returns seemingly random string when used on CGI Script

In a fairly complex Python CGI script, I receive a string from a form in the client's web page. The string is a date and time value with the format "YYYY-MM-DD HH-MM-SS" and it reaches the script ...
0
votes
1answer
66 views

JQuery inside here-doc not working

Is it possible to include JQuery in the here-doc section of perl. I tried but no success. Here is my code. my $cgi = CGI->new();print header();print start_html("JQuery in perl"); print ...
0
votes
1answer
71 views

In my Python CGI script, how do I save to disk a file uploaded via POST request of data entered by the user in a form?

The client has a simple form that takes a text and a file: <form name="add_show" id="add_show" action="" method="GET"> <label class="text-info">Show Name:</label> <input ...
0
votes
2answers
52 views

Javascript onsubmit with cgi action?

I have a html form and have a cgi script running on the action and then I have a javascript onsubmit function that should check if the radio button was filled out otherwise it wont submit. ...
0
votes
1answer
119 views

Python CGI responding in different ways to the same jQuery/AJAX request

I am implementing a system where to web pages (HTML + Javascript) communicate via CGI Python server side script. One of this pages makes a request: function doQuery(tweets) { ...
2
votes
1answer
53 views

why do I need 8 backslashes?

While writing a "simple" cgi shell script proxy server to wrap quoted xml in a jsonp-style callback, I ran into an issue with escaping the backslashes (that was solved through trial and error and ...
1
vote
3answers
273 views

Set Default Value for Select by using value attribute

I have web page with dynamically created Selects (dropdown), the web page created by shell CGI script: while read line; do textBoxValue=`printf "$line" | cut -d' ' -f1` ...
0
votes
0answers
91 views

Why are my console.log statements not showing?

I have a Bible search and passage lookup tool at http://jonathanhayward.com/powerbible.cgi. This tool is relatively mature, has seen much productive use, but it has a bit of an EMERAC metaphor for ...
1
vote
1answer
476 views

Python/CGI/Ajax: cgi.FieldStorage does not receive arguments

I am trying to get a Python, cgi module, ajax/javascript combination to work. Due to the nature of my server access (essentially rented webspace), I cannot install things like django or any other ...
1
vote
2answers
79 views

Maintaining a Javascript variable between HTML pages to send to database?

I'm doing an experiment for university that involves timing how long participants take to read a simple webpage. Because of the nature of the experiment, I can't tell them I'm timing them before they ...
0
votes
1answer
107 views

Client-side CGI, JavaScript / Python

Is it possible to pass information from the client-side browser using JavaScript to a client-side Python script using Python CGI? I have done some light googling and everything points to server-side ...
-1
votes
1answer
119 views

why is multi-select values appearing as csv and not array?

here is my html: <select id="list" name="list" size=10 multiple> <option value="xx">opt-1</option> <option value="yy">opt-2</option> <option ...
0
votes
1answer
348 views

How to get Javascript/HTML Form data into order confirmation email

I have created a form using JavaScript and HTML. Currently, I click submit and the data on the form is pulled through and displayed in textstrings in a textarea at the bottom of the page. The submit ...
3
votes
1answer
174 views

load text file contents into text field based on menu selection

I am trying to do the same thing this user intended: How to fill in a text field with drop down selection and it works great. Except the "value" of my dropdown menu item is a local path (on linux ...
2
votes
1answer
107 views

javascript enabled button does not post correct in IE

I'm experiencing issues with IE9 which is not performing the actions I need when clicking a button that was initially disabled, and re-enabled via javascript. I have a form (built with perl CGI) ...
0
votes
0answers
128 views

Email validation using CGI script and jquery ajax request

I have CGI script on my server that checks if an email id is in existence. It responds with 'Y' or 'N'. I'm trying to fetch this value on the client side using jquery ajax but I can't seem to get a ...
1
vote
1answer
85 views

Can't write text sent by javascript to a .txt file using python cgi

I'm having an error, while tring to write my string variable sent from javascript to a .txt file in cgi. this is the python cgi code with the error: 1 #!/usr/bin/python 2 ...
0
votes
1answer
156 views

Javascript Functions Confusing AJAX Responses from CGI Request/Response

I have 3 Javascript functions called from the body onload in the HTML page. Each Javascript function is contained in it's own Javascript file. Each Javascript file corresponds to another CGI script ...
-2
votes
1answer
142 views

CGI Perl - Load Javascript on load, but only on specific criteria

I have a form that is displayed only when a particular link is clicked, and the options for a number of dropdown menus are populated by javascript. I need to run this javascript when the form loads, ...
0
votes
1answer
122 views

Calling CGI using javascript

I have one CGI using python and placed in server .Now i have one URL to call that CGI,in that url i need to pass value to update in database.So how can i pass value in that url using javascript. ...
1
vote
2answers
385 views

Getting the responseText from XMLHttpRequest-Object

I wrote a cgi-script with c++ to return the query-string back to the requesting ajax object. I also write the query-string in a file in order to see if the cgi script works correctly. But when I ask ...
0
votes
1answer
48 views

Adressing a frame out of a cgi-generated frame?

I build a html-page with 3 frames. My first frame contains a form with variable content in a combo-box. So i generate it with a cgi-skript. When I submit the form I want the result of the second ...
1
vote
1answer
102 views

Problems with handing information from a c++ cgi-script to a javascript-tag

I try to set a variable for a javascript function with my cgi script hosted on the local IIS(Win7): cgi: cout<<"Content-type: text/javascript\r\n\r\n"; cout<<"var value=2;"; ...
0
votes
0answers
130 views

How to use perl cgi to export to excel with group and outline information

I am writing a website using perl(cgi)/js(jQuery)/Apache. Currently, I am using 'application/vnd.ms-excel' to export an html table structure to excel. For somehow, I need to create an excel spread ...
0
votes
0answers
100 views

How to plot a matrix based on slider bar position in webpage

I have some very simple data to display, and have a working mockup in Matlab. I'd like to put it on a webpage (prefereably by rewriting something in javascript or python, rather than using the matlab ...
0
votes
1answer
56 views

Determine file paths in CSS file depending on CGI HTTP_HOST

I work in a small development team where we use version control but one of the real bug bears for us is that our development paths are different from our live web platforms paths. So when we are ...
0
votes
2answers
136 views

Delete Server File When Exiting from Web Page

Using a python cgi script and I have a form with both a Submit and Cancel button. When a user tries to leave the web page by clicking Cancel, closing the window or hitting the back button, I want ...
0
votes
2answers
409 views

How to pass HTML Table Data to cgi and c++

This is my html code . I want to pass the table data to my CGI script using c++. <table> <thead> <th>Ex. Date</th> <th>Security<br ...
0
votes
2answers
111 views

How to read and store XML generated by CGI script from a URL address

I have a problem about reading XML file which generated by CGI Say I have a url address like this: ...
0
votes
1answer
252 views

Capture iframe return value in Perl CGI script

I think Its a very basic question. I am trying to develop a web page using Perl CGI. I have a text-editor(using iframe) in my form. Code: <iframe id="textEditor" style="width:500px; ...
0
votes
2answers
500 views

How to pass query string to HTML frame?

How do I pass a query string to a HTML frame? I have the following HTML in index.html: <HTML> <FRAMESET rows="200, 200" border=0> <FRAMESET> <FRAME name=top scrolling=no ...
0
votes
0answers
42 views

Looking to forward collected data to an external server after saving locally

I'm building an app to collect donations on my non-profit's website. I would like to collect some fairly detailed contact and donation data locally, and then send the user to the PayPal pay site to ...
3
votes
3answers
413 views

Is it possible to trigger file download to a user's browser?

Is it possible to force file download to user's browser (with the standard dialog prompt of course)? To be triggered by the server. Basically I'm thinking of pushing a file to the browser coming from ...
0
votes
1answer
125 views

cross-site scripting filter blocking my attempt to save javascript variable to mysql db using python cgi script

The main objective I have is to save a javascript variable to a mysql db using a python cgi script. This is the contents of the js variable: <li style="width: 300px; background-color: white; ...
0
votes
1answer
76 views

Why is cgi POST data being garbled and truncated

The JavaScript for the POST is file = document.getElementById("upfName").files[0]; xhrObj = new XMLHttpRequest(); xhrObj.open("POST", llm.serverExe + '?dataUpload', true); ...
0
votes
1answer
69 views

many selects (dropdowns) on html form, how to get just the value of the select that was changed

In a python cgi script I have many selects in a form (100 or so), and each select has 5 or 6 options to choose from. I don't want to have a separate submit button, so I am using onchange="submit();" ...
0
votes
1answer
206 views

Python CGI script, i am not able to pass '+' plus operator as a parameter

I am trying to pass a parameter to a python cgi script, this parameter contains the plus operator. /cgi-bin/test.py?input=print%20"%20"%20"%20%20-+-\" The python cgi script is simple: ...
2
votes
4answers
348 views

How do I get the MAC-address of the user of my site (my server)

How do I get the Mac address of the user of my site (server). Welcome any tools, methods and techniques, all language. Thank you.
1
vote
2answers
178 views

Upload file size is limited to 32kB and I get an error of “CGI.pm: Server closed socket during multipart read (client aborted?).”

I'm attempting to upload a file and the server-side language used is Perl. The CGI module version is 3.15 for some weird reason I can upload any file below 32KB, but beyond that that filesize, I ...
0
votes
0answers
196 views

cgi script is sending form data multiple times, once per refresh

I'm trying to write my own webmail application using python cgi with smtplib and imaplib. When I hit the send button on the "send" form the email is sent, however, for every refresh after that the ...
-1
votes
1answer
193 views

How do I enable a submit button after a radio button is selected?

I am writing a Perl CGI script. At first the submit button is disabled, it should be enabled when any of the radio button is selected. A radio button exists for each corresponding row (same name).
0
votes
1answer
330 views

turn on led after a javascript comparison

Ok, so I am monitoring the temperature in the room and controlling some LEDs with a PIC-WEB from microchip. I have to compare two temperatures: the one read by the temp sensor and one that I specify ...
0
votes
1answer
75 views

provide a downloadable file perl-template

I am working with Perl/CGI, MySQL, Perl Template toolkit. I have a database set up and some perl modules to query the database. From the perl modules I pass on a datastructure (hash of hashes) to ...
0
votes
2answers
67 views

Accessing the parent html page from a div

I've got a simple HTML page with a hidden field on it. I display a DIV which has a button on for the user to click - when they do that, I want to update the hidden field on the main page. At the ...
0
votes
3answers
282 views

javascript sum calculation not functioning

I have a cgi form for employees to enter travel expenses. I'm using javascript to automatically display & send calculated data. The first (mileage) calculation on the form works. I cannot get ...
0
votes
1answer
249 views

javascript refresh prevents cgi execution

I am trying to refresh the page after a cgi execution. In my cgi, a tcp packet is sent to a port. it is called in a hidden iframe. Here is my javascript code: function xx() { iframe = ...
1
vote
1answer
389 views

How to enable/disable multiple submit buttons on a form depending on selection of a radio button

I have a form that lists all the milestones in a project. The form has two submit buttons. One displays the tasks in the milestone. The other submit button is supposed to execute a script to generate ...

1 2 3