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

Open a new Window

Status
Not open for further replies.

JrClown

Technical User
Oct 18, 2000
393
US

What would be the command for opening a new (child) window from a ASP Page? I want a 450 x 450 window to open.

Click <u>here</u> to open a new window <--- non-working sample.


Please help me, thank you QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 
You have to use client-side JavaScript for that. Just look up help on window.open command. You'll have to have something like
<script>
myWin = window.open(&quot;file1.htm&quot;,&quot;win1&quot;,&quot;width=450,height=450&quot;) ---
---
 

Thanks Rydel. I appreciate your input. QUOTE OF THE DAY
Everyone you meet knows something you don't know. Be willing to learn from them.

Jr_Clown :eek:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top