T
Tommy
Is it possible to use the value from the asp snip below as a parameter to
the GetPriceValue() function on the line above it?
<asp:TextBox id="txtPrice_1_100" width="30px" runat="server" Text='<%#
GetPriceValue(1, 100) %>'></asp:TextBox>
<%# Container.DataItem("fipk") %>
I need to insert pass my function the primary key of the row that the rest
of the controls are being bound from. The container.dataitem is good on this
line as it is the datasource of my repeater.
Thanks in advance for any help.
Tommy
the GetPriceValue() function on the line above it?
<asp:TextBox id="txtPrice_1_100" width="30px" runat="server" Text='<%#
GetPriceValue(1, 100) %>'></asp:TextBox>
<%# Container.DataItem("fipk") %>
I need to insert pass my function the primary key of the row that the rest
of the controls are being bound from. The container.dataitem is good on this
line as it is the datasource of my repeater.
Thanks in advance for any help.
Tommy