I've passed a number of parameters to another page via an ID, I'm now wanting to display them in various parts of the form (as part of a payment certificate)
I would like to know if there's a much improved way to the one I've previously used below?
(just seems really cumbersome)
<asp:DetailsView ID="dvYear1"
runat="server"
AutoGenerateRows="False"
DataSourceID="dsCertDetails"
defaultMode="Edit"
Font-size="X-Large"
Font-Namse="Arial"
GridLines="None">
<Fields>
<asp:BoundField DataField="Year1"
SortExpression="Year1"
ReadOnly=& ...
Go to the complete details ...