Results 1 to 2 of 2

Thread: WebBrowser ?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jul 1999
    Posts
    16
    greetings, i am trying to use the browser control to submit links with descriptions, keywords to my site. i cant do it from a normal url?desc=&key= since it could be very long. i have tryed :
    WebBrowser1.Document.body.testing.URL.Value "http:"
    to put the info into my form. but its returning a "object doesnt support this property or method" any ideas on how i can fill the form with out having to do it manually?

    thanks for all your help

    ShadowWalker
    webmaster of shadowkeep.com

  2. #2
    Guest
    Code:
    <html>
      <head>
        <title>Submit Form</title>
      </head>
      <body onload="javascript:myform.submit()">
        <form name="myform" action="test.asp" method="post">
          <input type="hidden" name="this" value="me">
          <input type="hidden" name="that" value="myself">
          <input type="hidden" name="other" value="I">
        </form>
      </body>
    </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