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

browser control 2

Status
Not open for further replies.

BlindPete

Programmer
Jul 5, 2000
711
US
Hello,

I am hoping some one can post a sample or point me in the correct direction for browser control with ASP. What I want to be able to do is popup another instance of the browser that is smaller, w/o toolbars, menu etc... Kind of like what tek-tips does when you give someone a star.

Any help/hints?
-Pete
 
The popup window is a capability provided in the Document Object Model of scriptable objects, or Dynamic HTML, not a capability provided by ASP. In other words do what you would do in Javascript, JScript, or VBScript -

Code:
window.open("popup_document.html","myPopup","scrollbars=no,height=400,width=300");

This could be the href in an anchor tag, the action in a form, or for an onclick event. This script will be in the page that generates the popup window.

I recommend the O'Reilly book Dynamic HTML:The Definitive Reference by Danny Goodman.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top