I have published my application in local server in that radlistbox is working very well,i implemented custom transfer with e.cancel=true in OnTransfferring event of Sourcelistbox.it's working fine in locally but in public server url its item transfer is not working and 1 error is triggered as shown in attachment file(ErrorScreen.png)
error:
Sys.WebForms.PageRequestManagerServerErrorException An unknown error occurred while processing the request on the server.The status code returned from the server was: 12030
code:
<body class="main">
<form id="form2" runat="server">
<asp:ScriptManager ID="ScriptManager2" runat="server" AsyncPostBackTimeout="360000"
EnablePartialRendering="true">
</asp:ScriptManager>
<div class="centered">
<asp:UpdatePanel runat="server" ID="UpdatePanel1" UpdateMode="Conditional">
<ContentTemplate>
<table border="0" cellspacing="0" cellpadding="0" id="Table1" runat="server" align="center">
<tr>
<td>
<telerik:RadListBox ID="RadListBox1" runat="server" AllowTransfer="true" AllowTransferOnDoubleClick="true"
EnableViewState="true" AutoPostBackOnTransfer="true" EnableDragAndDrop="false"
Height="250px" OnItemDataBound="RadListBoxSource_ItemDataBound" Width="515px"
OnTransferring="RadListBoxSource_Transferring" SelectionMode="Multiple" Skin="WebBlue"
TransferToID="RadListBoxDestination">
<Items>
</Items>
<ButtonSettings AreaHeight="40px" AreaWidth="35px" ShowTransfer="true" ShowTransferAll="true"
VerticalAlign="Middle" />
</telerik:RadListBox>
</td>
<td>
<telerik:RadListBox ID="RadListBox2" runat="server" AllowTransferDuplicates="false"
EnableViewState="true" AllowTransferOnDoubleClick="true" AutoPostBackOnTransfer="true"
EnableDragAndDrop="false" Width="480px" Height="250px" OnItemDataBound="RadListBoxDestination_ItemDataBound"
SelectionMode="Multiple" Skin="WebBlue" Sort="Ascending" />
</td>
</tr>
</table>
</ContentTemplate>
</asp:Panel>
</div>
</form>
</body>
Please help.
Thanks & Regards,
Santhosh Naik