InternetAX文件夹里有一个InternetAX.ocx控件,是vc做的,没有图形界面.
接口:DownLoad(LPCTSTR internetFilePath, LPCTSTR localFilePath, long position)
他的参数是:
method:
 Download(mathod)
parameter:
 internetFilePath
 localFilePath
 position

我写的有很大错误,希望高手指点
<OBJECT ID="internetAX" CLASSID="CLSID:B6633114-1A23-4D27-A02C-056C796E4997"></OBJECT>
<SCRIPT LANGUAGE="jScript">
function fy()
{
    internetAX.DownLoad(LPCTSTR internetFilePath, LPCTSTR localFilePath, long position);    
}
</SCRIPT>
<form name="fy" method="post"  onSubmit="return onclick=fy()">
  <table width="596" border="0" align="center">
    <tr>
      <td width="92">InterNetPath</td>
      <td width="494"><input name="LPCTSTR internetFilePath" type="text" size="30" maxlength="100"></td>
    </tr>
    <tr>
      <td>localPath</td>
      <td><input name="LPCTSTR localFilePath" type="text" size="30" maxlength="100"></td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td><input type="submit" name="Submit" value="download">
       &nbsp;&nbsp;&nbsp;&nbsp;<input name="Submit" type="reset" class="bottom" value="reset"></td>
    </tr>
  </table>
</form>

在第一个文本彧中输如入C:/a.txt
在第二个文本彧中输如入C:/b.txt
点确定
a.txt里的内容写到b.txt里。

求高手解答