我的AjaxFileUpload控件在过去几周内随机停止工作。
我收到这个chrome控制台错误 - “Uncaught TypeError:无法读取未定义的属性'couldDeserializeInvalidJson'” - 每当我点击控件的上传按钮时。我不确定这个错误是否与控件不起作用有关,但控件的OnUploadCompled方法没有被调用。
我完全把头发拉过来,无法弄清楚出了什么问题,因为我没有在工作与否之间做出任何重大改变。
显然非常感谢任何帮助!
相关代码:
<asp:UpdatePanel runat="server" style="display: inline-block; padding-right: 20px;">
<ContentTemplate>
<asp:Label ID="lblMessage" runat="server" Text="" Font-Names = "Arial"></asp:Label>
<asp:Image ID="imgAsset" runat="server" />
<asp:HiddenField ID="hdnURl" runat="server" />
<asp:Button ID="btnShowimages" text="Show Images" CssClass="gallery-link" OnClientClick="showGallery(); return false;" runat="server" Style="position: center; bottom: 5px;" />
<cc1:AjaxFileUpload ID="ajaxUpload" runat="server" OnClientUploadStart="clientUpload()" OnUploadComplete="ajaxUpload_UploadComplete" Width="280px" style="min-width:200px; visibility:hidden; display:none;" MaximumNumberOfFiles="5" />
<asp:Button ID="btnShowUpload" OnClientClick="showUploader();return false;" runat="server" Text="Add images" CssClass="btn btn-success" Style="position: center; bottom: 5px;" />
<asp:Button ID="btnSave" OnClick="saveMaintenanceForm" runat="server" Text="Save" CssClass="btn btn-success" Style="position: center; bottom: 5px;" />
<label></label>
<asp:Button ID="btnCancelFault" OnClick="btnCancel_Click1" runat="server" Text="Cancel" CssClass="btn btn-danger" Style="position: center; bottom: 5px;" CausesValidation="false" />
</ContentTemplate>
</asp:UpdatePanel>