Any reason the following statement would always produce a 0?
 
Other expressions work just fine when the result of the first calculation is above 1  (eg:  5+2*100).  Is this a rounding issue ???
 
<%=4/8*100 %> 
 
try 4/8.0*100, java is like C, 4/8 gives you integer result
 
AndySoft 

Reply via email to