CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2000
    Posts
    1

    How do i get values from html text field to applet ?.

    Hai,

    How do i get values from html text field to applet ?.
    What are the different methods available ? , i would like to do this for all the browsers .

    Thanks in Advance,
    Vineet G.


  2. #2
    Join Date
    Nov 1999
    Location
    Indianapolis, IN
    Posts
    191

    Re: How do i get values from html text field to applet ?.

    In your applet class, (such as from the start() or init() method) call

    String astring = applet.getParameter("myParamName");




    And use the param tag in your html. As shown at
    http://jsp2.java.sun.com/products/pl...docs/tags.html



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