Есть форма а на ней Button и WebBrowser.
На кнопку я прописал:
Код: Выделить всё
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Navigate("http://www.test1.ru")
End Sub

Код: Выделить всё
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Test</title>
</head>
<body><form action="1.php" method="GET" name="test">
<p>Заголовок:
<input type="text" name="title" id="title"/>
</p>
<p>Новость:
<textarea name="new" cols="45" rows="5"></textarea>
</p>
<p>Ваше имя:
<input type="text" name="name" />
</p>
<p>
<input type="submit" name="act" id="act" value="Пост"/>
</p>
</form>
</body>
</html>

Код: Выделить всё
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Result</title>
</head>
<body>
<?php
echo "[align=center]". $_GET["title"]."[/align]
";
echo $_GET["new"]."
";
echo "Автор: ".$_GET["name"];
?>
</body>
</html>
Как вместо WebBrowser1.Document.All("title").SetAttribute("value", "помещаемый текст")
написать вот так:
(http://www.test1.ru).Document.All("title").SetAttribute("value", "помещаемый текст")
Если невозможно(а это так), то заполнить <input type="text" name="title" id="title"/> своим текстом без WebBrowser'a?