I'm not sure if you want to spawn the window from the
client side or from the server side. If you're serving up
a page to a web client you could use the target method or
javascript to spawn new windows. This can be done with a
form button or automatically when the page loads with meta
tags. Here is the javascript command to do this:
window.open('http://page.to/load/','NewWindowTitle', 'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=300,height=300')
If you want to control the browser on the same machine as
your database you have two options that I'm aware of.
First is to just execute the command with the url as an
argument.
netscape http://page.to/load/
Your second option is to control the browser. On win
platforms you could do this with OLE. Check out the excel
demo that comes with activestate perl. In unix the api
used to be available to compile C programs against.
Wish I had more details but maybe this could get you
started.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.