I have a Repeater that is databound to a SQL database. To access the information I do the following:
string Author = (string)DataBinder.Eval(e.Item.DataItem, "Author");
There are other properties (expressions? as intellisense puts it) that I need to access, but I am unsure of what their names are. Can I loop through the e.Item.DataItem
and get the names of all the expressions?
I posed this question already, sort of, but I think I was unclear. The result of that post gave me what looks like the table structure from the database, not the actual expression names/values:
UrlWithExtension [System.String]
ThumbnailUrl [System.String]
Content [System.Object]
Language [System.String]
// etc
Getting the values is not really important, just the names of the expressions.
Thanks!