> .... > > def generate_output(): > print '<html><body></body></html>' > > generate_output()
Raja ....
You might try adding a Content-type header followed by
a blank line to your generate_output() function ....
def generate_output() :
print 'Content-type: text/html'
print
print .... rest of your html ....
--
Stanley C. Kitching
Human Being
Phoenix, Arizona
--
http://mail.python.org/mailman/listinfo/python-list
