• 大小: 0.01M
    文件类型: .zip
    金币: 2
    下载: 2 次
    发布日期: 2021-02-23
  • 语言: C#
  • 标签: winform  FORM  FTP  服务器  ORM  

资源简介


资源截图

代码片段和文件信息

//Author             : Mohammed Habeeb - habeeb_matrix@hotmail.com  
//Date Created       : 17th January 2007 
//Description        : This class demonstartes common FTP functionalities using .net 2.0.
using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;

namespace FTP24CP
{
    public partial class Form1 : Form
    {
        string ftpServerIP;
        string ftpUserID;
        string ftpPassword;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            ftpServerIP = “192.168.1.21“;
            ftpUserID = “administrator“;
            ftpPassword = “xxxxx“;
            txtServerIP.Text = ftpServerIP;
            txtUsername.Text = ftpUserID;
            txtPassword.Text = ftpPassword;
            this.Tex

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        5814  2007-01-17 14:30  FTP24CP\Form1.resx
     文件       14974  2007-01-17 15:18  FTP24CP\Form1.cs
     文件        3322  2007-01-17 14:53  FTP24CP\FTP24CP.csproj
     文件       18753  2007-01-17 14:30  FTP24CP\Form1.Designer.cs
     文件         474  2006-12-15 14:02  FTP24CP\Program.cs
     目录           0  2007-01-17 15:18  FTP24CP\obj\
     文件         268  2007-01-17 15:18  FTP24CP\obj\FTP24CP.csproj.FileList.txt
     目录           0  2007-01-17 15:18  FTP24CP\obj\Debug\
     目录           0  2007-01-17 15:18  FTP24CP\obj\Debug\Refactor\
     目录           0  2007-01-17 15:18  FTP24CP\obj\Debug\TempPE\
     目录           0  2007-01-17 15:18  FTP24CP\bin\
     目录           0  2007-01-17 15:18  FTP24CP\bin\Debug\
     目录           0  2007-01-17 15:18  FTP24CP\Properties\
     文件        5612  2006-12-08 14:31  FTP24CP\Properties\Resources.resx
     文件         249  2006-12-08 14:31  FTP24CP\Properties\Settings.settings
     文件        1272  2006-12-08 14:31  FTP24CP\Properties\AssemblyInfo.cs
     文件        2841  2006-12-08 14:31  FTP24CP\Properties\Resources.Designer.cs
     文件        1090  2006-12-08 14:31  FTP24CP\Properties\Settings.Designer.cs
     目录           0  2007-01-17 15:18  FTP24CP\

评论

共有 条评论