In the past I have developed document workflows using SharePoint Designer and created 'Global Vairables.' These are variables that are global across a workflow instance as far as I am aware.
How would I create equivalent global variables in a Visual Studio Workflow project? My first idea was to create a set of fields like this in a module:
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Field ID="{2FE15855-3CAB-44A6-AB29-1600204FCA20}" Name="TechRev1"
MaxLength="255" DisplayName="Technical Reviewer 1" Description=""
Direction="None" Type="User" Overwrite="TRUE" />
<Field ID="{517B22A5-1B89-4C24-82BE-3D4FD99645BC}" Name="TechRev2"
MaxLength="255" DisplayName="Technical Reviewer 2" Description=""
Direction="None" Type="User" Overwrite="TRUE"/>
<Elements/>
Is this the right approach and how would I access any global variables from an ASPX form?