print 'Content-type: text/html\n\n'
try:
print 'persist_a exists, value \"' + __persistdict__['persist_a']
print '\" -- <font color=green>correct</font><p>'
except:
print "persist_a doesn't exist!! -- <font color=red>error!</font><p>"
try:
print 'persist_b exists, value \"' + persist_b
print '\" -- <font color=red>error!</font>'
except:
print "persist_b doesn't exist -- <font color=green>correct</font>"
|