Say I have the following classes:
public class A
{
public string x;
}
public class B
{
public A a;
}
I then bind my repeater to a list of class B's. Is there any way using Eval that I can get class A's x data member?
For example, Eval("A.x"). I know that won't work, but just curious if there was a convention for doing this.
I've looked at this post, but I don't believe it actually answers my question.
asptag... you know, the one with the big "DO NOT USE" message in the help text when you select it.