Hi John,
What you try to do is look at a session var that a) maybe doesnt exist (yet) b) hasn't been set with the value you picked in the drop.
Form fields aren't automatically stored as a session value. You have to organize that youself.
Do it as follows (and forgive me if the description of the checkbox/tab/button isn't accurate.I have no Clarion at hand here).
In the properties for the drop, click the tab Server side.
Check the box 'Send value to the server' and click the server side code button.
In the source editor type p_web.ssv('CON:Type',CON:type) .
Save the code.
After that you should see the value of CON:Type when you do a p_web.gsv('CON:Type')
Cheers,
Rene
P.s. In the reset list you can add the equates of form fields you want to reset eventually.
In this case it isn't relevant.