|
|
| How can I make my applet call another Web page? |
|
| Author |
Message |
s_garland

|
Posted: 7/28/2004 11:35:00 PM |
Top |
java-programmer, How can I make my applet call another Web page?
Hi All,
Would anyone know a way to have an applet call another Web page so
that, after the new page is loaded, if I hit the back button then I go
back to the page where the applet is at?
I don't need to know about button action events or about layout
managers or anything like that, just the URL processing code, or a
good reference.
Thank you,
S.
|
| |
|
| |
 |
Andrew Thompson

|
Posted: 7/29/2004 12:02:00 AM |
Top |
java-programmer >> How can I make my applet call another Web page?
On 28 Jul 2004 08:35:22 -0700, S. Garland wrote:
> Would anyone know a way to have an applet call another Web page
getAppletContext().showDocument(
"http://www.physci.org/codes/", "_blank" );
>...so
> that, after the new page is loaded, if I hit the back button then I go
> back to the page where the applet is at?
<http://www.physci.org/kbd.jsp?key=bkspc>
HTH
--
Andrew Thompson
http://www.PhySci.org/ Open-source software suite
http://www.PhySci.org/codes/ Web & IT Help
http://www.1point1C.org/ Science & Technology
|
| |
|
| |
 |
Tor Iver Wilhelmsen

|
Posted: 7/29/2004 12:28:00 AM |
Top |
java-programmer >> How can I make my applet call another Web page?
email***@***.com (S. Garland) writes:
> Would anyone know a way to have an applet call another Web page so
> that, after the new page is loaded, if I hit the back button then I go
> back to the page where the applet is at?
getAppletContext().showDocument(url);
|
| |
|
| |
 |
| |
|