Gregory Trubetskoy
grisha at modpython.org
Thu Jan 4 11:21:04 EST 2001
If you are using the mod_python.publisher handler, then you cannot use FieldStorage within it (because the publisher handler creates one for you already), you have to use req.form variable, it's an instance of util.FieldStorage. I'm sorry I forgot to document this little fact... -- Gregory (Grisha) Trubetskoy grisha at modpython.org On Thu, 4 Jan 2001, Arturo Peris wrote: > Hi, > my problem is with util.FieldStorage, I can't get information contained > in content variable. > I call my form.py program from here: > > ...<form action= "/mailing/form.py/handler" method="post">... > catsel, subcatsel and idisel are checkbox. > > > MY form.py PROGRAM > --------------------------------------------- > from mod_python import apache > from pg import DB > import string > from mod_python import util > > def handler(req,catsel,subcatsel,idisel): > req.content_type = "text/html" > req.send_http_header() > content = util.FieldStorage(req).list > --------------------------------------------- > > Can ne1 help me ? > > Thanks. > > _______________________________________________ > Mod_python mailing list > Mod_python at modpython.org > http://www.modpython.org/mailman/listinfo/mod_python >
|