Jag har en sida som har funkat, nu har jag gjort om lite grann, och det omgjorda funkar men inte FormatNumber. Troligen returnerar max2 = rs("max") NULL alternativt en text. Kolla först upp det..Type mismatch: 'FormatNumber'
Felmedelande:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'FormatNumber'
/projektor/Text/alt_3_reg.asp, line 123
<code>
<%
max2 = rs("max")
max1 = FormatNumber(max2, 2) "detta är rad 123"
max = Replace(max1, ",", ".")
'Response.Write(ratio)
'Response.Write(max)
IF int(ratio) > int(max) THEN
%>
&ratio=<%=ratio%>','lins','scrollbars=yes,width=450,height=300')">Dina kriterier kräver ett extra objektiv
<%
END IF
%>
</code>
ChristoferSv: Type mismatch: 'FormatNumber'
<code>
max2 = rs("max") : if IsNull(max2) then max2 = 0
</code>