Exactly the same error:
Microsoft VBScript runtime error '800a01f5'
Illegal assignment: 'WA_AB_checkLoopedFieldsExist'
/crea-serviziorg/WA_DataAssist/WA_AppBuilder_VB.asp, line 51
********* The code of WA_AppBuilder_VB.asp:
44. function WA_AB_checkMultiInsertLoopedFieldsExist(loopedFields, counterVal)
45. dim loopedFieldName
46. loopedFieldName = ""
47. for n=0 to UBound(loopedFields)
48. loopedFieldName = loopedFields(n) & "_mihidden"
49. loopedFieldName = WA_AB_getLoopedFieldName(loopedFieldName, counterVal)
50. if (loopedFieldName <> "" AND (InStr("&" & Request.Form, "&" & loopedFieldName & "=") > 0 OR InStr("&" & Request.QueryString, "&" & loopedFieldName & "=") > 0)) then
51. WA_AB_checkLoopedFieldsExist = true
exit function
********
this is the table row repeated in the form:
<tr>
<td>
<!--THIS INPUT IS MADE BY DATA ASSIST-->
<input type="hidden" name="pazienteidx_mihidden_<%=RepeatSelectionCounter_1%>" id="pazienteidx_mihidden_<%=RepeatSelectionCounter_1%>" value="1" />
<!-- ............. -->
<input type="hidden" name="pazienteidx_<%=RepeatSelectionCounter_1%>" id="pazienteidx_<%=RepeatSelectionCounter_1%>" value="<%=Request.Form("pazienteid")%>" />
<select id="farmacoid_<%=RepeatSelectionCounter_1%>" name="farmacoid_<%=RepeatSelectionCounter_1%>">
....
</select>
</td>
<td>
<input type="text" id="quantita_<%=RepeatSelectionCounter_1%>" name="quantita_<%=RepeatSelectionCounter_1%>" />
</td>
<td>
<input type="text" id="indicazioni_<%=RepeatSelectionCounter_1%>" name="indicazioni_<%=RepeatSelectionCounter_1%>"/>
</td>
</tr>
This is the first time I use the extension with multiple insertions after the upgrade to version 2.06. Before I never had problems.
Thank you
Luca