Wrong number of arguments or invalid property assignment
Nedenstående kode - som virker<tr>
<td width="40%" valign ="top" height="24" class="formbackground2"><p class="formtxt"><%=ISBNList("Titel")%>
</td>
<td class="formbackground2" width="60%" valign ="top" align="right" height="24"><p class="formtxt"><%=List("Antal")%> <%=CSStext(50)%> <%=Format_Currency(ISBNList("Pris"))%>
</td>
</tr>
--------------- skulle jeg gerne have lavet til
<tr>
<td width="25%" valign="top" class="formbackground3">
<b><p class="formtxt"><%=ISBNList("Titel")%>
</td>
<td width="25%" align="right" valign="top" class="formbackground3">
<p class="formtxt"><%=Format_Currency(ISBNList("Pris"), List("Antal"), List("ISBN-Nr"))%>
</td>
</center>
<td valign="top" align="center" class="formbackground3"><p align="center" class="formtxt"><%=List("Antal")%></td>
<center>
<td width="25%" align="right" valign="top" class="formbackground3"><p class="formtxt"><%=Format_Currency(Pris)%>
</td>
</tr>
men jeg får følgende fejl
Microsoft VBScript runtime error '800a01c2'
Wrong number of arguments or invalid property assignment: 'Format_Currency'
Er der en der kan hjælpe med hvad der er galt i kode 2