Hej!
Får inte följande simpla HTML formulär att funka i Internet Explorer 5.2 för Mac OS X eller senaste I.E. för OS 9. Står bara och tuggar och sen får man "ett anslutningsfel har inträffat". Funkar med Safari och på PC med Internet Explorer.
<html>
<head>
<title>Mailto Basic Demo</title>
</head>
<body>
<h1>Mailto Basic Demo</h1>
This is a sample mailto form. Note that it is not
intended as a true request form, but only shows what
can be done with mailto. You will not receive a reply
to mail generated by this form.
<form action="someone@somebody.net" method="post">
<table border="0" cellspacing="2" cellpadding="0">
<tr>
<td>E-mail Address:</td>
<td><input type="text" name="sender" value="" size="55" /></td>
</tr>
<tr>
<td>Name:</td>
<td><input type="text" name="sendername" value="" size="55" /></td>
</tr>
<tr>
<td valign="top">Comments:</td>
<td><textarea name="comments" rows="15" cols="55">
</textarea></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Send Comment" />
<input type="reset" value="Clear Comment" /></td>
</tr>
</table>
</form>
</body>
</html>
Vad kan det bero på?