Click here to Skip to main content
15,890,825 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a task to run that builds a data grid. The grid maybe up to 1000 lines. I open the grid in a new window. I was hoping there was a way to have the window open in a new thread and allow the person to continue to browse the site while the grid is building. Is this possible? If someone could point me in the correct direction I would be happy. Thank you in advance.
Posted

Opening in a new window is irrelevant here, you want to look at technologies like AJAX, - go on, google it -, which will allow you to asynchronous operations on your pages.
 
Share this answer
 
The second browser window should not block operation of the first browser window. Are you experiencing that behavior (that is, the first window being blocked while the second window loads)?
 
Share this answer
 
Yes when i open the pop-up then browse away from the original page the pop-up disappears.
 
Share this answer
 
Dear brsecu,

Put your grid in a new aspx page and open it using the following javascript code (open it as a popup) so the user can continue working on the parent page.

XML
<script language="javascript" type="text/javascript">
        function OpenGridPage() {
            window.open('PageUrl');
        }
    </script>


Regards,
Jamil
 
Share this answer
 
v2

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