-
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
-
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>