sip, ya vi en dev uru, tambien tiene otros usos como el de evaluar cadenas y ver si sus valores son identicos:
Code:
<%
ThisVar = 5.556
AnotherVar = 5.556
%>
<% =Eval("ThisVar = AnotherVar") %>
Output:
true
Code:
<% MyVar = Eval("CInt(12345.6789)") %>
<% =MyVar %>
Output:
12345
me gusta