Click here to Skip to main content
15,885,757 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
i have two radlistboxes.
I transfer or drag n drop to one-another radlistboxes.
When I click on save button, I got pop up which say " out of memory at line 1022 ".
page doesn't have line 1022.
Record didn't save when this error comes.

Help me.
Posted
Comments
Suvabrata Roy 26-Jun-13 0:59am    
radlistboxs means radiolistBox?
Rajesh Anuhya 26-Jun-13 1:04am    
it's thirdparty(telerik) control
Sant Osha 26-Jun-13 1:01am    
dude.. its telerik control

1 solution

Without code or any idea of the steps you have taken, it is almost impossible to help you on this. However, out of memory usually means you are out of stack or heap space. Either one is typically because of a loop in your code.

I suggest looking for a place where your operation is triggering an event, which is in turn triggering an event, which is re-triggering the first event and so on. The ui update methods are notorious for this.

Breakpoints and tracing are your friend. You could also try a performance profiler which would zero in on the method causing the problem.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900