I dumped out the contents of my asp.net application state and noticed many RadProgressContext instances.
Here’s a sample of the output I created while dumping the application state:
HttpContext.Current.Application[key] |
HttpContext.Current.Application[key].ToString() |
RadProgressContexta994ac27-7029-4afc-aba5-f71d1f53636d |
Telerik.Web.UI.RadProgressContext |
RadProgressContext9abbf6cc-983f-466d-bf0c-08d3144e0cc5 |
Telerik.Web.UI.RadProgressContext |
RadUploadContext9abbf6cc-983f-466d-bf0c-08d3144e0cc5 |
Telerik.Web.UI.RadUploadContext |
RadProgressContextb154df9a-33f7-4f30-b5ba-c27887fb83f1 |
Telerik.Web.UI.RadProgressContext |
RadProgressContext0eaa8757-91ec-4dcf-8cd1-f6d8bf36bc52 |
Telerik.Web.UI.RadProgressContext |
RadUploadContext0eaa8757-91ec-4dcf-8cd1-f6d8bf36bc52 |
Telerik.Web.UI.RadUploadContext |
That is a sample, there are lots more of these. Does this indicate an issue? Do I need to do something to clean this stuff up?
Thanks,
Hello Telerik team,
I have a requirement where i have a Telerik rad grid which has a datasource of sharepoint list.
When you edit a record from the rad grid, I have to update the particular record and update the record.
I have a sharepoint list which have more than 150 columns in it.I am using sharepoint object model to update the sharepoint list item by saying
listitem.update();
When I do that,it takes a lot of time to update the record.Is it because of so many columns or
i have more than 20000 records in the sharepoint list.Is there any better way of doing it.
One of my thought is that it might be taing so much time on update as
it has to create the content type for that particular list item.
Is there any way that if we can already define a content type for that list so that
the process of updation will become fast.
Any ideas to improve the performace is greatly appreciated.
Thank you,
Smith
Protected Sub RadGridSearchresults_PdfExporting(ByVal source As Object, ByVal e As Telerik.Web.UI.GridPdfExportingArgs) Handles RadGridSearchresults.PdfExporting
Dim myHTMLCode As String = "Signature ___________________________________"
source.ExportOutput = source.ExportOutput.Replace("</
body
>", myHTMLCode + "</
body
>")
End Sub