Reputation: 302
I am facing a problem regarding RadAjaxLoadingPanel. I have to save different records from Excel or CSV file to my database using Open Access. When query start on and data in being saved in DB, loading panel is working fine but after some time when certain amount of records are saved(say 350 records) to DB than loading panel hides and does not show any progress while data in saving in DB. I studied about MinDisplayTime property of RadAjaxLoadingPanel but i need to set this property according to my number of records so that loading panel should be displayed until all records are saved to DB.
For brief description I am attaching working video of my problem .You will see in the video that loading panel disappears after some time while records are being saved to DB continuously but loading panel disappears.
this is video link. http://screencast.com/t/oSkjTDheo
What should I do to show the loading panel until all my records are saved to DB ? Can some one help my ASAP.
Regards: Kamran
Upvotes: 1
Views: 1277
Reputation: 9861
The two minute page request timeout has expired. The browser will wait two minutes on a request before it stops waiting.
Several things that I am seeing as part of this operation:
This is a synchronous operation that you are demonstrating to load data. You may want to use the recommended RadAsyncUpload control to load the file. In this way, you are immediately returning control to the page. You can then perform your data load asynchronously behind the scenes and display a progress meter as the data is loaded.
Your data load rate is roughly 3 records per second. That is very slow, what process are you using to load this data? 500 records should load into a single table in just a few seconds.
Upvotes: 1