473,799 Members | 3,147 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Python CGI: Hidden fields don't show up in submitted keys!

1 New Member
Hello all,
The search function of this forum isn't working although I found a similar question on the forum using Google, but the replies don't help me. So, forgive me please if this has been answered before.

I have a cgi program in Python that genereates an HTML page with a form with hidden fields whose values are set via the following:
Expand|Select|Wrap|Line Numbers
  1. ##Print hidden "usernameH", "passwordH", "timeH", "checksumH", and toPageH, fields with value attribs
  2.     print"""
  3.     <input name="usernameH" type="hidden" id="usernameH" value="%s">
  4.     <input name="passwordH" type="hidden" id="passwordH" value="%s">
  5.     <input name="timeH" type="hidden" id="timeH" value="%f">
  6.     <input name="checksumH" type="hidden" id="checksumH" value="%s"></p>
  7.     <input name="toPageH" type="hidden" id="toPageH" value="queryPage"></p>
  8.     <p>
  9.     """%(usernameH, passwordH, timeH, checksumH)
The Submit action is handled with bits of javascript that follow:
Expand|Select|Wrap|Line Numbers
  1. <!--javascript function that returns true if username and password lengths are both greater than zero-->
  2.  
  3. <script language="JavaScript">
  4. function validate() {
  5.     if (loginForm.username.value.length > 0 && loginForm.password.value.length > 0){return true;}
  6.     else{return false;}
  7.     }
  8.     </script>
  9.  
and:
Expand|Select|Wrap|Line Numbers
  1. <FORM name="loginForm" ACTION="hw6mod.cgi" METHOD="POST" onsubmit=" if(!validate()){
  2.     alert('Your username and/or password is blank.'); return false; }">
The problem is that when I Submit the form back to my cgi program and I have the code below, the usernameH and passwordH values are NOT in the keys!
Expand|Select|Wrap|Line Numbers
  1. form = cgi.FieldStorage()
  2. myKeys = form.keys()
  3. def printKeys(myKeys):
  4.     for key in myKeys:
  5.         print """<p>key: %s, value: %s type: %s</p>"""%(key, form[key].value, type(form[key].value))   
  6.  
What's going wrong?

Thanks!
May 8 '06 #1
0 2080

Sign in to post your reply or Sign up for a free account.

Similar topics

16
2927
by: Philippe C. Martin | last post by:
Hi, I am trying to change the data in a form field from python. The following code does not crash but has no effect as if "form" is just a copy of the original html form. Must I recreate the form order to do that ? My point is for the client to be able to re-read the modified data.
11
3373
by: m4x123 | last post by:
Hi, I have this cgi script which is a simple authentication web page, it check the value of the password_field and if correct call the subroutine alfa. I don't know why it stops with an error when I click on "insert new stream" I tried to call the subroutine without the authentication part and it works. #!/usr/bin/perl -Tw use CGI;
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10023
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9067
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5459
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5583
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4135
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2935
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.