Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting result in a different window

Status
Not open for further replies.

RickLiebespach

Programmer
Sep 29, 2003
85
US
I know I've seen this before, but this is the first time I've needed it, and now I can't remember how to do it...

Question 1:
How do I have the result of a query return the the user in a different window? How do I get it to open it's own browse?

Retaining session in the new window is not necessary in this case...as long as the original window is still usable and retains it's session.
....but since I brought it up...

Question 2:
If I had to retain session in the new window, is it possible? and if so...how?

Thanks.


Rick Liebespach
 
umm.. not completely confident I understand but are you just asking for the target="" attribute in the form tag for when it is submitted?

_____________________________________________________________________
onpnt2.gif

 
You can't write to the session object so you are unable to "transfer" one session to another. Once you open the new window you have two sessions going.
 
rick, this is an old thread, i never saw it lol... but...

new window methods :

target="_blank" ( works on forms, hrefs, and pretty much anything you can click )

<script language="javascript">
window.open ('yourpage and args');
</script>



[thumbsup2]DreX
aKa - Robert
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top