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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Window.open

Status
Not open for further replies.

week

MIS
Feb 14, 2001
118
0
0
US
When I do window.open(oXMLReply.xml), it opens windows explorer but it passes the output into the URL bar. How do I pass so it displays as xml within the browser?

Thanks.
 
window.open - javascript right?

Known is handfull, Unknown is worldfull
 
Or can this be done in ASP Page?

Actually, the current code which is not right looks like this in ASP:

<TD COLSPAN=&quot;5&quot; ALIGN=&quot;right&quot; ><INPUT TYPE=&quot;button&quot; CLASS=&quot;clsButton&quot; NAME=&quot;Call&quot; VALUE=&quot;Open With Internet Explorer&quot; onclick=&quot;window.open(oXMLReply.xml);&quot;>&nbsp;&nbsp;&nbsp;</TD>

This opens a window but puts the xml to URL. Another problem is that it closes the original window and can't return...

I was thinking I should call a Java function when onclick. Then use window.open in the java function.

Am I on the right track?
 
window.open('oXMLReply.xml')?

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top