Question : Incorrect function. error

Hi, I've been working on this site for quite a while with no problems. I have a very simple form just for testing which just goes from one page to another, it doesn't even pass any values. But when I click the submit button I get the error: "Incorrect function." This is all it says. The new URL appears at the top "http://152.159.89.247:8017/help/networkhelp/Trainingondemand/storeemailtest.html" so I'm pretty sure that the direct from the submit button is working. I am totally lost, any ideas what is happening here?

Thanks

My form looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="../storeemailtest.html">
  <label>
  <input type="text" name="textfield" />
  </label>
  <br />
  <label>
  <input type="submit" name="Submit" value="Submit" />
  </label>
</form>
</body>
</html>


The recipient page looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
nothing here
</body>
</html>

Answer : Incorrect function. error

I believe, that you would divide 1 by the instruction clock, (in this case giving 250nS). therefore one instruction takes approx 250nS. then divide your required delay XmS by 250nS to give required number of instructions to complete the delay.
i.e for a 250mS delay you would require (0.250/0.00000025) 1 million instructions
Random Solutions  
 
programming4us programming4us