C
Christine Y.
I'm using a data repeater to get ID values from a simple table in my
database and display them on my .aspx page (this is working):
<ItemTemplate>
<tr>
....
<td><%# DataBinder.Eval(Container, "DataItem.MyID") %></td>
....
<tr>
</ItemTemplate>
Now, I want to be able to store the value I get from
DataBinder.Eval(...) into a string and call a function in my code
behind (from within the .aspx page, passing that string). Is this
possible? I'm a newbie to ASP.NET, ADO.NET and C#, so any help would
be greatly appreciated! Thanks!
Christine
database and display them on my .aspx page (this is working):
<ItemTemplate>
<tr>
....
<td><%# DataBinder.Eval(Container, "DataItem.MyID") %></td>
....
<tr>
</ItemTemplate>
Now, I want to be able to store the value I get from
DataBinder.Eval(...) into a string and call a function in my code
behind (from within the .aspx page, passing that string). Is this
possible? I'm a newbie to ASP.NET, ADO.NET and C#, so any help would
be greatly appreciated! Thanks!
Christine