Asp免费FTP组件的用法 Xinsoft,2003-11-02 14:34:55 组件:AspFTP 2.0 下载:http://218.30.124.42/resource/soft/aspftp.dll 下载以后在服务器上注册,这个不用我多说了

Asp免费FTP组件的用法 Xinsoft,2003-11-02 14:34:55


组件:AspFTP 2.0
下载:http://218.30.124.42/resource/soft/aspftp.dll

下载以后在服务器上注册,这个不用我多说了吧


公用文件:AspFTP2.inc  Xinsoft,2003-11-02 14:35:52

AspFTP2.inc

复制代码
  1. <% 
  2. 'Constants used with the AspFTP ActiveX Component 
  3.  
  4. ACCESS_TYPE_PRECONFIG = 0 
  5. ACCESS_TYPE_DIRECT = 1 
  6. ACCESS_TYPE_PROXY = 2 
  7.  
  8. TRANSFER_TYPE_ASCII = 1 
  9. TRANSFER_TYPE_BINARY = 2 
  10.  
  11. FILE_ACCESS_WRITE = 1 
  12. FILE_ACCESS_READ = 2 
  13.  
  14. ATTRIBUTE_READONLY = 1 
  15. ATTRIBUTE_HIDDEN = 2 
  16. ATTRIBUTE_SYSTEM = 4 
  17. ATTRIBUTE_DIRECTORY = 16 
  18. ATTRIBUTE_ARCHIVE = 32 
  19. ATTRIBUTE_NORMAL = 128 
  20. ATTRIBUTE_TEMPORARY = 256 
  21. ATTRIBUTE_COMPRESSED = 2048 
  22. ATTRIBUTE_OFFLINE = 4096 
  23. %>

删除文件的例子  Xinsoft,2003-11-02 14:38:57

此帖为对http://www.leadbbs.com/Announce/Announce.asp?BoardID=230&ID=605010的回复

AspFTP2_DeleteFile_form.asp

复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("DelIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.  
  12.      'specify the server, user name, and password 
  13.      objFTP.sServerName = Request.Form("Server") 
  14.      objFTP.sUserID = Request.Form("User_ID") 
  15.      objFTP.sPassword = Request.Form("Password") 
  16.  
  17.      'connect to the server 
  18.      If objFTP.bConnect Then 
  19.  
  20.          'connection worked...now delete the file 
  21.          If objFTP.bDeleteFile(Request.Form("File")) Then 
  22.              'delete was successful 
  23.              strMsg = "Delete Successful!" 
  24.          Else 
  25.              'delete failed...let user know 
  26.              strMsg = "Delete Failed: " & objFTP.sError 
  27.          End If 
  28.           
  29.      Else 
  30.  
  31.          'connect failed...let user know 
  32.          strMsg = objFTP.sError 
  33.           
  34.      End If 
  35.  
  36.      'clean up... 
  37.      Set objFTP = Nothing 
  38.       
  39. Else 
  40.      'default return msg 
  41.      strMsg = "" 
  42. End If 
  43. %> 
  44.  
  45. <html> 
  46. <body> 
  47.  
  48. This example uses the standard Delete File method (bDeleteFile). All parameters 
  49. required for deleting a file are entered by the user in the  
  50. form below.<br> 
  51. <hr> 
  52. <br> 
  53.  
  54. <%If strMsg <> "" Then%> 
  55. Return Message: <%=strMsg%><br> 
  56. <hr> 
  57. <br> 
  58. <%End If%> 
  59.  
  60. <form action="AspFTP2_DeleteFile_form.asp" method="post" id="form1" name="form1"> 
  61. <table border="0" cellspacing="10"> 
  62. <tr> 
  63.      <td>Server/Host Name:</td> 
  64.      <td><input name="Server" size="25"></td> 
  65. </tr><tr> 
  66.      <td>User ID:</td> 
  67.      <td><input name="User_ID" size="25"></td> 
  68. </tr><tr> 
  69.      <td>Password:</td> 
  70.      <td><input name="Password" size="25"></td> 
  71. </tr><tr> 
  72.      <td>File Name:</td> 
  73.      <td><input name="File" size="25"></td> 
  74. </tr><tr> 
  75.      <td colspan="2" align="center"><input type="submit" name="DelIt" value="Delete File"></td> 
  76. </tr> 
  77. </table> 
  78. </form> 
  79.  
  80. </body> 
  81. </html>



AspFTP2_DeleteFile.asp

复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("DelIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.  
  12.      'specify the server, user name, and password 
  13.      objFTP.sServerName = "kii-201094" 
  14.      objFTP.sUserID = "anonymous" 
  15.      objFTP.sPassword = "wally@wallyworld.com" 
  16.  
  17.      'connect to the server 
  18.      If objFTP.bConnect Then 
  19.  
  20.          'connection worked...now delete the file 
  21.          If objFTP.bDeleteFile("dirmap.txt") Then 
  22.              'delete was successful 
  23.              strMsg = "Delete Successful!" 
  24.          Else 
  25.              'delete failed...let user know 
  26.              strMsg = "Delete Failed: " & objFTP.sError 
  27.          End If 
  28.           
  29.      Else 
  30.  
  31.          'connect failed...let user know 
  32.          strMsg = objFTP.sError 
  33.           
  34.      End If 
  35.  
  36.      'clean up... 
  37.      Set objFTP = Nothing 
  38.       
  39. Else 
  40.      'default return msg 
  41.      strMsg = "" 
  42. End If 
  43. %> 
  44.  
  45. <html> 
  46. <body> 
  47.  
  48. This example uses the standard Delete File method (bDeleteFile). All parameters 
  49. required for deleting a file are explicitly defined in the ASP code.<br> 
  50. <hr> 
  51. <br> 
  52.  
  53. <%If strMsg <> "" Then%> 
  54. Return Message: <%=strMsg%><br> 
  55. <hr> 
  56. <br> 
  57. <%End If%> 
  58.  
  59. <form action="AspFTP2_DeleteFile.asp" method="post" id="form1" name="form1"> 
  60. <input type="submit" name="DelIt" value="Delete File"> 
  61. </form> 
  62.  
  63. </body> 
  64. </html>

Get文件的例子  Xinsoft,2003-11-02 14:45:55

AspFTP2_Get_form.asp

复制代码
  1.  
  2. <%@ LANGUAGE=VBScript %> 
  3. <!--#Include File="aspftp2.inc"--> 
  4. <% 
  5. 'check to see if user submitted form 
  6. If Request.Form("GetIt") <> "" Then 
  7.      Dim objFTP 
  8.      Dim strMsg 
  9.  
  10.      'create reference to object 
  11.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  12.  
  13.      'set the properties for the connection 
  14.      objFTP.sServerName = Request.Form("Server") 
  15.      objFTP.sUserID = Request.Form("User_ID") 
  16.      objFTP.sPassword = Request.Form("Password") 
  17.       
  18.      'connect to the host 
  19.      If objFTP.bConnect Then       
  20.            'set the properties for the get function 
  21.            objFTP.bOverWrite = Request.Form("OverWrite") 
  22.            objFTP.lTransferType = Request.Form("Transfer_Type") 
  23.  
  24.            'now get the file 
  25.            If objFTP.bGetFile(Request.Form("Remote_File"), Request.Form("Local_File")) Then 
  26.                'get was successful 
  27.                strMsg = "Get Successful!" 
  28.            Else 
  29.                'get failed...let user know 
  30.                strMsg = "Get Failed: " & objFTP.sError 
  31.            End If 
  32.      Else 
  33.            'connection failed...let user know 
  34.            strMsg = "Connection Failed: " & objFTP.sError 
  35.      End If 
  36.           
  37.      'clean up... 
  38.      Set objFTP = Nothing 
  39.       
  40. Else 
  41.      'default return msg 
  42.      strMsg = "" 
  43. End If 
  44. %> 
  45.  
  46. <html> 
  47. <body> 
  48.  
  49. This example uses the Get method (bGetFile). All parameters 
  50. required for receiving a file are entered by the user in the  
  51. form below.<br> 
  52. <hr> 
  53. <br> 
  54.  
  55. <%If strMsg <> "" Then%> 
  56. Return Message: <%=strMsg%><br> 
  57. <hr> 
  58. <br> 
  59. <%End If%> 
  60.  
  61. <form action="AspFTP2_Get_form.asp" method="post"> 
  62. <table border="0" cellspacing="10"> 
  63. <tr> 
  64.      <td>Server/Host Name:</td> 
  65.      <td><input name="Server" size="25"></td> 
  66. </tr><tr> 
  67.      <td>User ID:</td> 
  68.      <td><input name="User_ID" size="25"></td> 
  69. </tr><tr> 
  70.      <td>Password:</td> 
  71.      <td><input name="Password" size="25"></td> 
  72. </tr><tr> 
  73.      <td>Remote File Name:</td> 
  74.      <td><input name="Remote_File" size="25"></td> 
  75. </tr><tr> 
  76.      <td>Local File Name:</td> 
  77.      <td><input name="Local_File" size="25"></td> 
  78. </tr><tr> 
  79.      <td>File Type:</td> 
  80.      <td><select name="Transfer_Type"> 
  81.      <option value="1">ASCII</option> 
  82.      <option value="2">Binary</option> 
  83.      </select></td> 
  84. </tr><tr> 
  85.      <td>Overwrite Existing File?</td> 
  86.      <td><input name="OverWrite" type="radio" value="True" checked>True 
  87.      <input name="OverWrite" type="radio" value="False">False</td> 
  88. </tr><tr> 
  89.      <td colspan="2" align="center"><input type="submit" name="GetIt" value="Get File"></td> 
  90. </tr> 
  91. </table> 
  92. </form> 
  93.  
  94. </body> 
  95. </html>




AspFTP2_Get.asp



复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("GetIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.       
  12.      'set the properties for the connection 
  13.      objFTP.sServerName = "ftp.microsoft.com" 
  14.      objFTP.sUserID = "anonymous" 
  15.      objFTP.sPassword = "wally@wallyworld.com" 
  16.       
  17.      'connect to the host 
  18.      If objFTP.bConnect Then       
  19.            'set the properties for the get function 
  20.            objFTP.bOverWrite = True 
  21.            objFTP.lTransferType = TRANSFER_TYPE_ASCII 
  22.  
  23.            'now get the file 
  24.            If objFTP.bGetFile("dirmap.txt", "c:/dirmap.txt") Then 
  25.                'get was successful 
  26.                strMsg = "Get Successful!" 
  27.            Else 
  28.                'get failed...let user know 
  29.                strMsg = "Get Failed: " & objFTP.sError 
  30.            End If 
  31.      Else 
  32.            'connection failed...let user know 
  33.            strMsg = "Connection Failed: " & objFTP.sError 
  34.      End If 
  35.           
  36.      'clean up... 
  37.      Set objFTP = Nothing 
  38.       
  39. Else 
  40.      'default return msg 
  41.      strMsg = "" 
  42. End If 
  43. %> 
  44.  
  45. <html> 
  46. <body> 
  47.  
  48. This example uses the Get method (bGetFile). All parameters 
  49. required for receiving a file are explicitly defined in the ASP code.<br> 
  50. <hr> 
  51. <br> 
  52.  
  53. <%If strMsg <> "" Then%> 
  54. Return Message: <%=strMsg%><br> 
  55. <hr> 
  56. <br> 
  57. <%End If%> 
  58.  
  59. <form action="AspFTP2_Get.asp" method="post"> 
  60. <input type="submit" name="GetIt" value="Get File"> 
  61. </form> 
  62.  
  63. </body> 
  64. </html>

Put文件的例子  Xinsoft,2003-11-02 14:49:40

AspFTP2_Put_form.asp


复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("PutIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.  
  12.      'set the properties for the connection 
  13.      objFTP.sServerName = Request.Form("Server") 
  14.      objFTP.sUserID = Request.Form("User_ID") 
  15.      objFTP.sPassword = Request.Form("Password") 
  16.  
  17.      'connect to the host 
  18.      If objFTP.bConnect Then       
  19.            'set the properties for the put function 
  20.            objFTP.lTransferType = Request.Form("Transfer_Type") 
  21.  
  22.            'now put the file 
  23.            If objFTP.bPutFile(Request.Form("Local_File"),Request.Form("Remote_File")) Then 
  24.                'put was successful 
  25.                strMsg = "Put Successful!" 
  26.            Else 
  27.                'put failed...let user know 
  28.                strMsg = "Put Failed: " & objFTP.sError 
  29.            End If 
  30.      End If 
  31.           
  32.      'clean up... 
  33.      Set objFTP = Nothing 
  34.       
  35. Else 
  36.      'default return msg 
  37.      strMsg = "" 
  38. End If 
  39. %> 
  40.  
  41. <html> 
  42. <body> 
  43.  
  44. This example uses the Put method (bPutFile). All parameters 
  45. required for receiving a file are entered by the user in the  
  46. form below.<br> 
  47. <hr> 
  48. <br> 
  49.  
  50. <%If strMsg <> "" Then%> 
  51. Return Message: <%=strMsg%><br> 
  52. <hr> 
  53. <br> 
  54. <%End If%> 
  55.  
  56. <form action="AspFTP2_QPut_form.asp" method="post"> 
  57. <table border="0" cellspacing="10"> 
  58. <tr> 
  59.      <td>Server/Host Name:</td> 
  60.      <td><input name="Server" size="25"></td> 
  61. </tr><tr> 
  62.      <td>User ID:</td> 
  63.      <td><input name="User_ID" size="25"></td> 
  64. </tr><tr> 
  65.      <td>Password:</td> 
  66.      <td><input name="Password" size="25"></td> 
  67. </tr><tr> 
  68.      <td>Local File Name:</td> 
  69.      <td><input name="Local_File" size="25"></td> 
  70. </tr><tr> 
  71.      <td>Remote File Name:</td> 
  72.      <td><input name="Remote_File" size="25"></td> 
  73. </tr><tr> 
  74.      <td>File Type:</td> 
  75.      <td><select name="Transfer_Type"> 
  76.      <option value="1">ASCII</option> 
  77.      <option value="2">Binary</option> 
  78.      </select></td> 
  79. </tr><tr> 
  80.      <td colspan="2" align="center"><input type="submit" name="PutIt" value="Put File"></td> 
  81. </tr> 
  82. </table> 
  83. </form> 
  84.  
  85. </body> 
  86. </html>



AspFTP2_Put.asp


复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("PutIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.  
  12.      'set the properties for the connection 
  13.      objFTP.sServerName = "ftp.microsoft.com" 
  14.      objFTP.sUserID = "anonymous" 
  15.      objFTP.sPassword = "wally@wallyworld.com" 
  16.       
  17.      'connect to the host 
  18.      If objFTP.bConnect Then       
  19.            'set the properties for the put function 
  20.            objFTP.lTransferType = TRANSFER_TYPE_ASCII 
  21.  
  22.            'now put the file 
  23.            If objFTP.bPutFile("c:/test.txt", "test.txt") Then 
  24.                'put was successful 
  25.                strMsg = "Put Successful!" 
  26.            Else 
  27.                'put failed...let user know 
  28.                strMsg = "Put Failed: " & objFTP.sError 
  29.            End If 
  30.      Else 
  31.            'connection failed...let user know 
  32.            strMsg = "Connection Failed: " & objFTP.sError       
  33.      End If 
  34.           
  35.      'clean up... 
  36.      Set objFTP = Nothing 
  37.       
  38. Else 
  39.      'default return msg 
  40.      strMsg = "" 
  41. End If 
  42. %> 
  43.  
  44. <html> 
  45. <body> 
  46.  
  47. This example uses the Put method (bPutFile). All parameters 
  48. required for receiving a file are explicitly defined in the ASP code.<br> 
  49. <hr> 
  50. <br> 
  51.  
  52. <%If strMsg <> "" Then%> 
  53. Return Message: <%=strMsg%><br> 
  54. <hr> 
  55. <br> 
  56. <%End If%> 
  57.  
  58. <form action="AspFTP2_Put.asp" method="post"> 
  59. <input type="submit" name="PutIt" value="Put File"> 
  60. </form> 
  61.  
  62. </body> 
  63. </html>

删除目录的例子  Xinsoft,2003-11-02 15:03:10

AspFTP2_RemoveDir_form.asp



复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("RemoveIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.  
  12.      'specify the server, user name, and password 
  13.      objFTP.sServerName = Request.Form("Server") 
  14.      objFTP.sUserID = Request.Form("User_ID") 
  15.      objFTP.sPassword = Request.Form("Password") 
  16.  
  17.      'connect to the server 
  18.      If objFTP.bConnect Then 
  19.  
  20.          'connection worked...now remove the directory 
  21.          If objFTP.bRemoveDir(Request.Form("Dir")) Then 
  22.              'remove was successful 
  23.              strMsg = "Remove Successful!" 
  24.          Else 
  25.              'remove failed...let user know 
  26.              strMsg = "Removed Failed: " & objFTP.sError 
  27.          End If 
  28.           
  29.      Else 
  30.  
  31.          'connect failed...let user know 
  32.          strMsg = objFTP.sError 
  33.           
  34.      End If 
  35.  
  36.      'clean up... 
  37.      Set objFTP = Nothing 
  38.       
  39. Else 
  40.      'default return msg 
  41.      strMsg = "" 
  42. End If 
  43. %> 
  44.  
  45. <html> 
  46. <body> 
  47.  
  48. This example uses the standard Remove Directory method (bRemoveDir). All parameters 
  49. required for removing a directory are entered by the user in the  
  50. form below.<br> 
  51. <hr> 
  52. <br> 
  53.  
  54. <%If strMsg <> "" Then%> 
  55. Return Message: <%=strMsg%><br> 
  56. <hr> 
  57. <br> 
  58. <%End If%> 
  59.  
  60. <form action="AspFTP2_RemoveDir_form.asp" method="post" id="form1" name="form1"> 
  61. <table border="0" cellspacing="10"> 
  62. <tr> 
  63.      <td>Server/Host Name:</td> 
  64.      <td><input name="Server" size="25"></td> 
  65. </tr><tr> 
  66.      <td>User ID:</td> 
  67.      <td><input name="User_ID" size="25"></td> 
  68. </tr><tr> 
  69.      <td>Password:</td> 
  70.      <td><input name="Password" size="25"></td> 
  71. </tr><tr> 
  72.      <td>Directory:</td> 
  73.      <td><input name="Dir" size="25"></td> 
  74. </tr><tr> 
  75.      <td colspan="2" align="center"><input type="submit" name="RemoveIt" value="Remove Directory"></td> 
  76. </tr> 
  77. </table> 
  78. </form> 
  79.  
  80. </body> 
  81. </html>




AspFTP2_RemoveDir.asp


复制代码
  1. <%@ LANGUAGE=VBScript %> 
  2. <!--#Include File="aspftp2.inc"--> 
  3. <% 
  4. 'check to see if user submitted form 
  5. If Request.Form("RemoveIt") <> "" Then 
  6.      Dim objFTP 
  7.      Dim strMsg 
  8.  
  9.      'create reference to object 
  10.      Set objFTP = Server.CreateObject("NIBLACK.ASPFTP") 
  11.  
  12.      'specify the server, user name, and password 
  13.      objFTP.sServerName = "kii-201094" 
  14.      objFTP.sUserID = "anonymous" 
  15.      objFTP.sPassword = "wally@wallyworld.com" 
  16.  
  17.      'connect to the server 
  18.      If objFTP.bConnect Then 
  19.  
  20.          'connection worked...now remove the directory 
  21.          If objFTP.bRemoveDir("test") Then 
  22.              'remove was successful 
  23.              strMsg = "Remove Successful!" 
  24.          Else 
  25.              'remove failed...let user know 
  26.              strMsg = "Remove Failed: " & objFTP.sError 
  27.          End If 
  28.           
  29.      Else 
  30.  
  31.          'connect failed...let user know 
  32.          strMsg = objFTP.sError 
  33.           
  34.      End If 
  35.  
  36.      'clean up... 
  37.      Set objFTP = Nothing 
  38.       
  39. Else 
  40.      'default return msg 
  41.      strMsg = "" 
  42. End If 
  43. %> 
  44.  
  45. <html> 
  46. <body> 
  47.  
  48. This example uses the standard Remove Directory method (bRemoveDir). All parameters 
  49. required for removing a directory are explicitly defined in the ASP code.<br> 
  50. <hr> 
  51. <br> 
  52.  
  53. <%If strMsg <> "" Then%> 
  54. Return Message: <%=strMsg%><br> 
  55. <hr> 
  56. <br> 
  57. <%End If%> 
  58.  
  59. <form action="AspFTP2_RemoveDir.asp" method="post" id="form1" name="form1"> 
  60. <input type="submit" name="RemoveIt" value="Remove Directory"> 
  61. </form> 
  62.  
  63. </body> 
  64. </html>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
<br> Framework EDI ActiveX控件 是一个EDI软件开发工具箱,包括对EDI解决方案有用的ActiveX/COM和工具。使用FREDI,在几天之内就能创建EDI系统,能实现构建,转换,验证和传输EDI文件等功能。<br><br> Framework EDI ActiveX控件 工具箱具有EDI的功能和命令,开发者可以写较少的代码就能快速构建功能完善的符合公司要求的EDI方案。 <br><br> Framework EDI ActiveX控件V5.1的特色: EDI生成器:自动创建输出(outbound) EDI文档; EDI文件转换器:EDI剖析器读取输入(inbound) EDI消息; EDI分析器:使EDI文件生效并且自动产生Functional Acknowledgments (997) 或 Syntax Messages (CONTRL)。 传输EDI文件:支持FTP, SMTP, HTTP, HTTPS和AS2,传输文件和接收文件; 保护EDI文件:支持X12.58安全结构和AS2; 支持X12 和 UN/EDIFACT标准:使用SEF文件支持EDI X12 和 EDI UN/EDIFACT的所有版本。 Framework EDI ActiveX控件V5.1包括以下工具: eFilemanager:用于浏览小的EDI文件; eAnalyzer:用于检测和修改EDI消息里的错误; SEF管理器:用于浏览和编辑SEF文件里的向导行; SourceCodeMaker SM-Plug-In(仅限企业版):产生转换和生成EDI文件的原代码; SEF Reader:以更易阅读的方式浏览SEF文件,这是个免费软件。 使用FREDI的10个原因: FREDI ActiveX / COM是一个功能强大的EDI组件,容易使用和运行; FREDI功能让EDI文件使用更简单和更容易理解; 这是一个创新的技术,专门解决EDI文件相关的问题; FREDI能加密和压缩EDI消息,因此在Internet上传输更快更安全; FREDI使文档有效,因此所创建和读取的文件符合EDI标准; FREDI自动产生Functional Acknowledgments (997) 或 Syntax Messages (CONTRL); 在很短时间内,以很少的成本构建一个EDI方案,符合EDI标准; 已有500多使用者(包括财富杂志500强企业和美国政府机构)把FREDI作为EDI方案; FREDI非常划算,只需要955美元,而且有EDI专家支持,不需要年费; 最重要的原因是:FREDI使得EDI工作乐在其中! Framework EDI ActiveX控件V5.1的系统最低要求: Windows 98/2000/NT4.0/XP; 256 MB内存; Pentium III 1GHz; 1GB磁盘空间。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值