Dear Trusted Zope Zealots,<br><br>This subject was a bit too broad to do a google search on, because I've tried and the lack of relevancy was astounding.<br><br>I've probably been committing a cardinal sin in DTML, but I couldn't figure any other work around.
<br><br>I have an HTML form in a DTML Document say:<br><br>&lt;form action=&quot;process_this_form&quot; method=&quot;post&quot;<br><br>Name:&lt;input type=&quot;text&quot; name:&quot;first_name&quot;&gt;<br><br>&lt;/form&gt;
<br><br>I want to use &quot;first_name&quot; in a python script, but what I've been doing is setting it in the process_this_form, which is a DTML method:<br><br>DTML Method, process_this_form:<br>&lt;dtml-call &quot;REQUEST.SESSION.set
('firstName', first_name)&gt;<br>&lt;dtml-call &quot;this_is_a_python_script()&quot;&gt;<br><br>and in the Python Script, this_is_a_python_script<br>I use REQUEST.SESSION.get('firstName')<br><br>What my question is, is there anyway to directly access &quot;first_name&quot; from the form in the python script without having to have to call the &lt;dtml-call &quot;
REQUEST.SESSION.set('firstName', first_name)&gt; and then REQUEST.SESSION.get('firstName') in the python script.&nbsp; Sort of a sophomoric question, but any help would be appreciated.&nbsp; Thanks in advance.<br><br>-Muk<br>