I've a formview that displays the results of a query based on the criteria typed into a textbox. It works magically. I would like to, however, change the color of the formview to red or green based on the values inside the form view.
For example:
Rating: 4.0
Course Number: MGMT 2080
Those are inside the form view. I essentially want,
If rating >= 3.5 Then
FormView.Color = Green
End If
Is this possible?
For example:
Rating: 4.0
Course Number: MGMT 2080
Those are inside the form view. I essentially want,
If rating >= 3.5 Then
FormView.Color = Green
End If
Is this possible?
Comment