I would like to have the functionality of DataBinder.Eval (i.e., perform runtime databinding); however, DataBinder.Eval is defined in the System.Web assembly, which is not available on the .NET Framework 4 Client Profile.
I am wondering if there is an alternative in the .NET Framework 4 Client Profile assemblies, or if maybe a Mono DLL file might have something with this functionality.
If not, I may have to copy the code for DataBinder.Eval using Reflector, but I would prefer using an existing method if possible.