<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
<blockquote cite="midmailman.1234.1160934931.11738.tutor@python.org"
 type="cite">
  <pre wrap=""><b>Mike Hansen</b> 
    <a
 href="mailto:tutor%40python.org?Subject=%5BTutor%5D%20Exception%20and%20sys.exit%28%29%20in%20a%20cgi%20script&amp;In-Reply-To="
 title="[Tutor] Exception and sys.exit() in a cgi script">Mike.Hansen at atmel.com
       </a>

    <i>Mon Oct 16 18:43:29 CEST 2006</i>
&gt;<i> This is a peace of a CGI script i have.
</i>&gt;<i> 
</i>&gt;<i> 1 import cgi
</i>&gt;<i> 2 form=cgi.FieldStorage()
</i>&gt;<i> 3 try :
</i>&gt;<i> 4     ano=form["ano"].value
</i>&gt;<i> 5     conta=form["conta"].value
</i>&gt;<i> 6 except KeyError :
</i>&gt;<i> 7     print '&lt;html&gt;&lt;br&gt;&lt;br&gt;&lt;body&gt;&lt;p&gt;Please enter values in the
</i>&gt;<i> fields&lt;/p&gt;&lt;/body&gt;&lt;/html&gt; '
</i>&gt;<i> 8     sys.exit(0)
</i>&gt;<i> 
</i>&gt;<i> 
</i>&gt;<i> When the excption occurs, no message is shown on the browser.
</i>&gt;<i> 
</i>&gt;<i> If I run the script with IDLE, the message is printed and then the
</i>&gt;<i> script exits.
</i>&gt;<i> 
</i>&gt;<i> What's wrong here?
</i>&gt;<i> 
</i>&gt;<i> 
</i>&gt;<i> 
</i>&gt;<i> _______________________________________________
</i>&gt;<i> Tutor maillist  -  <a
 href="http://mail.python.org/mailman/listinfo/tutor">Tutor at python.org</a>
</i>&gt;<i> <a href="http://mail.python.org/mailman/listinfo/tutor">http://mail.python.org/mailman/listinfo/tutor</a>
</i>&gt;<i> </i>   </pre>
  <pre wrap="">I'm catching up on the weekend's tutor messages.

import cgitb; cgitb.enable()
That spits errors to the web page which is great for debugging cgi
scripts.

I think you need
print "Content-Type: text/html\n\n" 
<a href="http://docs.python.org/lib/cgi-intro.html">http://docs.python.org/lib/cgi-intro.html</a>

<a href="http://docs.python.org/lib/node560.html">http://docs.python.org/lib/node560.html</a>

Mike</pre>
</blockquote>
<br>
Thats not the point (sorry).<br>
<br>
when all the values are provided in the form (no excetion is raised) it
runs as expected!<br>
<br>
The point is when one of the values "ano", "conta" is missing in the
form, I want the error message to be shown on the browser, and the
script to stop running.<br>
<br>
When there is an exception, the script actually stops running, but no
message is sent to the browser.<br>
</body>
</html>