This is a peace of a CGI script i have.

1 import cgi
2 form=cgi.FieldStorage()
3 try :
4     ano=form["ano"].value
5     conta=form["conta"].value
6 except KeyError :
7     print '<html><br><br><body><p>Please enter values in the
fields</p></body></html> '
8     sys.exit(0)


When the excption occurs, no message is shown on the browser.

If I run the script with IDLE, the message is printed and then the
script exits.

What's wrong here?



_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to