I have a aspx page that is used to import information from a csv file to a database. Some of the files are large and this can take several minutes. I would like to show the progress of the action to the user. Currently they keep wanting to reboot because after 15 minutes they think that their machine is locked up.
The problem is that when the user clicks the Import button the page does a post back and runs starts the import and will not render the progress bar until the import is finished.
Is there a way to render the page (the client side stuff) on postback before starting the import (the server side stuff)?
I am open to any kind of ideas here.
Thanks
Rich
The problem is that when the user clicks the Import button the page does a post back and runs starts the import and will not render the progress bar until the import is finished.
Is there a way to render the page (the client side stuff) on postback before starting the import (the server side stuff)?
I am open to any kind of ideas here.
Thanks
Rich