K
Kevin Blount
In a DataList, I'm using the following:
<%# DataBinder.Eval(Container.DataItem, "characterization")%>
I was wondering if it's possible to create a string that would contain
the value of the above line, so that I can manipulate it:
I tried
string resultText = DataBinder.Eval(Container.DataItem, "characterization");
....but I get an error saying "Container" does not exist in the current
context.
Any advise on how to get the value of "characterization" into "resultText"?
<%# DataBinder.Eval(Container.DataItem, "characterization")%>
I was wondering if it's possible to create a string that would contain
the value of the above line, so that I can manipulate it:
I tried
string resultText = DataBinder.Eval(Container.DataItem, "characterization");
....but I get an error saying "Container" does not exist in the current
context.
Any advise on how to get the value of "characterization" into "resultText"?