Hi,
Can you show me how to use RadProgressArea while loading data from a sql server? Here is my scenario:
I have a RadButton. when a user click on this button, I have a function call RetrieveData() and this function will connect to a sql database and query about 100,000 records and performing a lot of data manipulation so it will take awhile to produce desire data.
while processing the data, I would like to display like a progress bar so user can see what's going on and wait. I found the demo here:
http://demos.telerik.com/aspnet-ajax/upload/examples/customprogress/defaultcs.aspx and really like it, but I don't know how to apply it to my scenario. From the example, it sets the total process = 100, but in my case, my query run can take up to 3 minutes. Please provide code as possible. Here is my code behind page:
protected void RetrieveData()
{
//using LINQ to SQL to select data
}
Please help, thanks in advance!