The following lines of code return error message
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'FormatCurrency '
/UnetER/sam_CCMSamEditR ules_Bottom.asp , line 51
When users scrolled down the bottom of a report written in ASP and running on Windows 7
Here is the lines of code:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'FormatCurrency '
/UnetER/sam_CCMSamEditR ules_Bottom.asp , line 51
When users scrolled down the bottom of a report written in ASP and running on Windows 7
Here is the lines of code:
Code:
<% if objRecordSet("IncorrectAmount") = 0 then %>
<td align="right">*</td>
<%else%>
<td align="right">
<%=formatcurrency(objRecordSet("IncorrectAmount"))%>*
</td>
<%end if%>
Comment