This is throwing me down the stairs. I'm trying to pull out individual form element values to do things with. I have a working form with settings like:<br><br>==============<br>my $w = $c-&gt;widget('write_msg_form')-&gt;method('post');<br>$w-&gt;element('Textfield', 'sndr_email' )-&gt;label('Email')-&gt;size(50)-&gt;value('');<br>&lt;snip&gt;<br>my $result = $w-&gt;process($c-&gt;req);<br>&lt;snip&gt;<br>$c-&gt;stash-&gt;{widget_result} = $w-&gt;result;<br>==============<br><br>In my tt template this works fine:<br><br>[% widget_result.container %]<br><br>But nothing I've tried has successfully retrieved stuff like the value of the sndr_email field. (Trying to follow doc for HTML::Widget::Result, but I'm having a disconnect going from the generically presented lists of methods to actual correctly formatted perl.) How to do this?<br><br>/dennis<br><br><br>