Hi !!
so:
Code:
<form onsubmit="parent.mainFrame.location.href = this.url.value; return false;">
<input type="text" name="url" value="http://">
<input type="submit" name="Abschicken" value="get URL">
</form>
oder so:
Code:
<form method="get" target="mainFrame" onsubmit="this.action = this.url.value;">
<input type="text" name="url" value="http://">
<input type="submit" name="Abschicken" value="get URL">
</form>
Gruß Jan