D
DesCF
If I set the DataKeyNames property of a FormView control, for example:
MyFormView.DataKeyNames = New String() {"CustomerID"}
I can retrieve the current FormView Page CustomerID value using:
MyFormView.DataKey.Value
My question is how do I retrive other field values ? for example, how do
I retrieve a field value and use it to programatically set the
SelectedValue of a DropDownList during the Load event such that the
DropDownList displayed item changes as a I page through the records ?
Des
MyFormView.DataKeyNames = New String() {"CustomerID"}
I can retrieve the current FormView Page CustomerID value using:
MyFormView.DataKey.Value
My question is how do I retrive other field values ? for example, how do
I retrieve a field value and use it to programatically set the
SelectedValue of a DropDownList during the Load event such that the
DropDownList displayed item changes as a I page through the records ?
Des