![]() |
|
|
|||||||
![]() |
ASP Net - Q: Passing information between browser windows? |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
My main main page is to create a pop-up window for the user to enter
advanced search criteria. When he submits the query, the page in the main window should display search results. So, how would I pass the criteria from the popup back the the main window? (URL/href parameters is *not* an option) Also, I need to make sure the only one instance of the popup exist in order to prevent the user from accidentally opening multiple copies. Any ideas? TIA! Usenet User |
|
|
|
|
#2 |
|
Posts: n/a
|
This will need to be done on the client side using Javascript.
You can have a JS function in the main window eg. function RemoteRequestHandler() >From the child window you can call this function using window.opener.RemoteReqeustHandler() method and also pass whatever parameters you want to perfom the tasks. "to prevent the user from accidentally opening multiple copies" again in your client script you will have to keep track of this. Best option is to assign a name to the window that you open that way whenever the call is made it will be made to the same window. HTH. zeyais@gmail.com |
|
|
|
#3 |
|
Posts: n/a
|
Thanks, I am getting there...
On 14 Apr 2006 15:55:46 -0700, wrote: >This will need to be done on the client side using Javascript. > >You can have a JS function in the main window eg. function >RemoteRequestHandler() > >>From the child window you can call this function using >window.opener.RemoteReqeustHandler() method and also pass whatever >parameters you want to perfom the tasks. > >"to prevent the user from accidentally opening multiple copies" > >again in your client script you will have to keep track of this. Best >option is to assign a name to the window that you open that way >whenever the call is made it will be made to the same window. > >HTH. Usenet User |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to Reset / Recover Forgotten Windows NT / 2000 / XP / 2003 Administrator Password | wskaihd | Software | 2 | 11-17-2009 02:01 AM |
| How to activate Remote Assistance with XP using Windows Live Messenger | Oziisr | General Help Related Topics | 0 | 02-01-2008 04:45 PM |
| Computer Security | aldrich.chappel.com.use@gmail.com | A+ Certification | 0 | 11-27-2007 02:11 AM |
| MCITP: Enterprise Support Technician | MileHighWelch | MCITP | 1 | 06-19-2007 10:25 PM |
| Re: Question about MS critical updates | John Coode | A+ Certification | 0 | 06-30-2004 06:08 PM |