Hi there,
In the DetailsViewAdapter the following code is present when iterating through the cells of a row:
If iCell = 0 Then
writer.WriteAttribute("class", "dvName")
ElseIf iCell = 1 Then
writer.WriteAttribute("class", "dvValue")
Else
writer.WriteAttribute("class", "dvMisc")
End If
I'm wondering what scenario results in the final Else condition being met?
Thanks.
Kel