When I use the following code:
Dim newNodeValue As String = e.Node.Value
Dim oldNodeValue As String
If e.OldNode IsNot Nothing Then
oldNodeValue = e.OldNode.Value
Else
oldNodeValue = "none"
End If
Choice.Text = Server.HtmlEncode(String.Format("{0} (from {1})", newNodeValue, oldNodeValue))
On the first selection I get:
System.Data.DataRowView (from none)
All subsequent selection are:
System.Data.DataRowView (from System.Data.DataRowView)
Choice is a
What am I doing wrong? Thanks for your help.