importjava.applet.*;importjava.awt.*;importjava.net.*;importjava.awt.event.*;publicclass tesURL extendsAppletimplementsActionListener{publicvoidinit(){String link ="yahoo";Button b =newButton(link);
b.addActionListener(this);add(b);}publicvoidactionPerformed(ActionEvent ae){Button src =(Button)ae.getSource();String link ="http://www."+src.getLabel()+".com";try{AppletContext a =getAppletContext();URL u =newURL(link);
a.showDocument(u,"_self");}catch(MalformedURLException e){System.out.println(e.getMessage());}}}