CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Java Servlet

  1. #1
    Guest

    Java Servlet

    i am a software developer. I want to open a new Internet Explorer window in the client's window from server using servlet. can any body help.



  2. #2
    Join Date
    Nov 1999
    Location
    Tilburg-Breda, Noord-Brabant, The Netherlands
    Posts
    135

    Re: Java Servlet

    Hi,

    I guess you want to open a link in another window. You can then use the link property target="_blank", and the link will be opened in a new window.

    Greets,
    Jan Meeuwesen
    ( If this answer is of any value to you, rate it! (bottom right in your browser under this text) )


  3. #3
    Join Date
    Dec 1999
    Location
    Chonghe, Taipei County, Taiwan, R.O.C.
    Posts
    231

    Re: Java Servlet

    Here is the mehtod that you can try . If it fails, I think it is........
    In you servlet, you may invoke your applet which is going to be executing in the IE.
    Applet applet = (Applet) Class.forName("appletclassname").newInstance();
    applet.getAppletContext().showDocument(url);
    where url is the instance of URL class
    good luck
    Alfred Wu



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured