Note that there are some explanatory texts on larger screens.

plurals
  1. POProblem with Ajax [SYS.webforms.pagerequestmanagerserver exception]
    primarykey
    data
    text
    <p>I'm new in web development, I have a problem in a web application after deployment (it's not appeared in my development machine), The deployment machine [Wind Server 2003 x64, IIS 6]</p> <p>The error in IE after enable the debug mode:</p> <pre><code>SYS.webforms.pagerequestmanagerserver error exception has been thrown by the target of an invocation. //scriptresource.axd </code></pre> <p>The error is shown when an Ajax <code>ModalPopupExtender</code> is opened. I replaced the popup with a simpleModal [JQuery], the exception is still appeared.</p> <p>Inside the popup there's a user control and inside the user control there's a <code>RadGrid</code> from telerik contains a <code>RadAsyncUpload</code> in a <code>GridTemplateColumn</code></p> <p><strong>Edit:</strong> When I put the user control out of the popup, no exceptions.</p> <p><strong>Edit:</strong> The scripts which inside the user control:</p> <pre><code> &lt;asp:UpdatePanel ID="attachmentUpdate" runat="server" UpdateMode="Always" &gt; &lt;ContentTemplate &gt; &lt;telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"&gt; &lt;script type="text/javascript"&gt; var uploadedFilesCount = 0; var isEditMode; function validateRadUpload(source, e) { // When the RadGrid is in Edit mode the user is not obliged to upload file. if (isEditMode == null || isEditMode == undefined) { e.IsValid = false; if (uploadedFilesCount &gt; 0) e.IsValid = true; } isEditMode = null; } function OnClientFileUploaded(sender, eventArgs) { uploadedFilesCount++; } function OnClientDeleting(sender, everntArgs) { uploadedFilesCount--; } function RowCreated(sender, args) { var RadGrid = $find("&lt;%=RadGrid1.ClientID %&gt;"); if (RadGrid.get_masterTableView().get_isItemInserted()) uploadedFilesCount = 0; // to ignore the file in edit mode ... if (RadGrid._editIndexes.length &gt; 0) // in edit mode uploadedFilesCount = 1; } &lt;/script&gt; &lt;/telerik:RadCodeBlock&gt; </code></pre> <p>kindly ask me for any extra information</p> <p>Thanks in advance</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload