Trying to show outputs for a single value to display in a header of the template.
When I execute the stored procedure within Sql management studio, it shows these as the output results; so the output appears to be working:
@EUID @SingleOfficial @SingleDateOfElection
45B3855D-A60D-4ED9-8F9F-302C93952201 0 2014-05-06 00:00:00.000
Yet, nothing is being displayed within the Template. Any ideas?
<xmod:Template id="ResultsListing">
<ListDataSource CommandText="XMP_Results_IndividualListing" CommandType="StoredProcedure">
<Parameter Name="PageName" Value="Results" />
<Parameter Name="EUID" direction="Output" datatype="string" size="100" />
<Parameter Name="SingleOfficial" direction="Output" datatype="string" size="100" />
<Parameter Name="SingleDateOfElection" direction="Output" datatype="string" size="100" />
</ListDataSource>
<HeaderTemplate>
Official - [[ResultsListing_list@SingleOfficial]]<br />
Date of Election - [[ResultsListing_list@SingleDateOfElection]]
</HeaderTemplate>