Need Help

  • Thread starter Thread starter Martin Tully
  • Start date Start date
M

Martin Tully

I need to get this value out of this page and onto another aspx page but it
seems like the value is stuck inside the itemtemplate any ideas how can I
accomplish and if possible an example would be nice.

Thx in advance.


<asp:DataList id="DataList1" runat="server">
<ItemTemplate>
<asp:Label id="custname" runat="server" text='<%#
DataBinder.Eval(Container.DataItem,"billname") %>'></asp:Label>
</ItemTemplate>
</asp:DataList>
 
Martin Tully said:
I need to get this value out of this page and onto another aspx page
but it seems like the value is stuck inside the itemtemplate any ideas
how can I accomplish and if possible an example would be nice.

I would do like this:

In the ItemCreated event, retrieve the value and put it in the Session.
 
Back
Top