Hi,
In my ObjectDataSource I have this:
Code:
<SelectParameters>
<asp:QueryStringParameter Name="isbn" QueryStringField="isbn" Type="String" />
</SelectParameters>
I want to output the value of this parameter inside a DetailsView control inside the same file. With code similar to this:
Code:
<asp:Literal Text='<%# QueryStringParameterISBN %>' />
I know how to do it in code-behind but would like to do it declaratively instead. If it's possible...
Any suggestion?
Thanks