• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

can applet redirect to some webpage

 
Ranch Hand
Posts: 817
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi
can any body tell me is that applet can redirect to some page at particular time ?

how to make sheduler using applet ?
and that sheduler can redirect to particular page at specified time ?

Please openly give ideas ??

Thanx and Regards,
amit
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you haven't written many applets, you should start with the Java Tutorial chapter on Writing Applets.
You can load a URL using the showDocument() method of java.applet.AppletContext. As for writing a scheduler, you'll probably have to use a thread. Take a look at the Java Tutorial chapter on Threads for a start. There's also information in the tutorial on applets above concerning working with threads in applets.
Good luck!
 
amit taneja
Ranch Hand
Posts: 817
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanx v.much...
one last thing..
can i include the applet in servlet ?

i think yes ?
what do u say ?
 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI,


I dont think you can put an applet in a servlet, simply because a servlet runs on the server side where as an applet runs in a client's browser.

Please feel free to correct me if I am wrong.
-G.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic