> can someone explain me, when to use:
> (DateTime)DataBinder.Eval(Container.DataItem, "dateField")
[quoted text clipped - 7 lines]
>
> The same problem is with (int16) and Convert.ToInt16
When you cast, the runtime type of the object must be exactly correct
(leaving conversion operators aside for the moment as they're not
relevant in your example).
When you use Convert.ToDateTime(object), the object just has to be of
some type which implements IConvertible and does the appropriate thing
with IConvertible.ToDateTime.
In other words, it depends what DataBinder.Eval actually returns. If it
returns a string, for instance, Convert.ToDateTime will work (because
System.String implements IConvertible and tries to parse the string as
a date/time) but casting won't.
Does that help?

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Ignacio Machin ( .NET/ C# MVP ) - 22 Dec 2005 13:59 GMT
Hi,
An addition to the OP comments, Convert.ToDateTime does not always work,
there are a number (most of them) that raise exception , IIRC only when
received a string it does the conversion.

Signature
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
>> can someone explain me, when to use:
>> (DateTime)DataBinder.Eval(Container.DataItem, "dateField")
[quoted text clipped - 22 lines]
>
> Does that help?