Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. ftp - upload image files

ftp - upload image files

Scheduled Pinned Locked Moved ASP.NET
csharphelptutorialquestion
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    Paulraj G
    wrote on last edited by
    #1

    Hi... I am using asp with c#. I am doing an application for upload image files via ftp. how to i do this? Any help will be appriciated... thanks...

    G.Paulraj

    T A 2 Replies Last reply
    0
    • P Paulraj G

      Hi... I am using asp with c#. I am doing an application for upload image files via ftp. how to i do this? Any help will be appriciated... thanks...

      G.Paulraj

      T Offline
      T Offline
      The Man from U N C L E
      wrote on last edited by
      #2

      Try this[^].

      If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) [My Articles]  [My Website]

      1 Reply Last reply
      0
      • P Paulraj G

        Hi... I am using asp with c#. I am doing an application for upload image files via ftp. how to i do this? Any help will be appriciated... thanks...

        G.Paulraj

        A Offline
        A Offline
        April Fans
        wrote on last edited by
        #3

        <%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm6.aspx.vb" Inherits="MyData.WebForm6"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title>WebForm6</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </HEAD> <body MS_POSITIONING="GridLayout"> <ASP:panel id="FileUploadForm" visible="true" runat="server"> <FORM id="Form2" method="post" encType="multipart/from-data" runat="server"> <P><INPUT id="loFile" type="file" name="loFile" runat="server"></P> <P> <asp:TextBox id="dir" runat="server"></asp:TextBox><BR <asp:Button id="Button1" runat="server" Text="Button"></asp:Button><BR> </P> </FORM> </ASP:panel> <ASP:panel id="AnswerMsg" visible="false" runat="server"> <ASP:label id="FileName" runat="server"></ASP:label> <BR> <ASP:label id="FileLength" runat="server"></ASP:label> <BR> <ASP:label id="FileType" runat="server"></ASP:label> <BR> </ASP:panel> </body> </HTML> .vb Imports System.IO Imports System.Data Public Class WebForm6 Inherits System.Web.UI.Page #Region " <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() End Sub Protected WithEvents FileUploadForm As System.Web.UI.WebControls.Panel Protected WithEvents FileName As System.Web.UI.WebControls.Label Protected WithEvents FileLength As System.Web.UI.WebControls.Label Protected WithEvents FileType As System.Web.UI.WebControls.Label Protected WithEvents AnswerMsg As System.Web.UI.WebControls.Panel Protected WithEvents loFile As System.Web.UI.HtmlControls.HtmlInputFile Protected WithEvents Button1 As System.Web.UI.WebControls.Button Protected WithEvents dir As System.Web.UI.WebControls.TextBox Private designerPlaceholderDeclaration As System.Object Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Priva

        P 1 Reply Last reply
        0
        • A April Fans

          <%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm6.aspx.vb" Inherits="MyData.WebForm6"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title>WebForm6</title> <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" content="Visual Basic .NET 7.1"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> </HEAD> <body MS_POSITIONING="GridLayout"> <ASP:panel id="FileUploadForm" visible="true" runat="server"> <FORM id="Form2" method="post" encType="multipart/from-data" runat="server"> <P><INPUT id="loFile" type="file" name="loFile" runat="server"></P> <P> <asp:TextBox id="dir" runat="server"></asp:TextBox><BR <asp:Button id="Button1" runat="server" Text="Button"></asp:Button><BR> </P> </FORM> </ASP:panel> <ASP:panel id="AnswerMsg" visible="false" runat="server"> <ASP:label id="FileName" runat="server"></ASP:label> <BR> <ASP:label id="FileLength" runat="server"></ASP:label> <BR> <ASP:label id="FileType" runat="server"></ASP:label> <BR> </ASP:panel> </body> </HTML> .vb Imports System.IO Imports System.Data Public Class WebForm6 Inherits System.Web.UI.Page #Region " <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent() End Sub Protected WithEvents FileUploadForm As System.Web.UI.WebControls.Panel Protected WithEvents FileName As System.Web.UI.WebControls.Label Protected WithEvents FileLength As System.Web.UI.WebControls.Label Protected WithEvents FileType As System.Web.UI.WebControls.Label Protected WithEvents AnswerMsg As System.Web.UI.WebControls.Panel Protected WithEvents loFile As System.Web.UI.HtmlControls.HtmlInputFile Protected WithEvents Button1 As System.Web.UI.WebControls.Button Protected WithEvents dir As System.Web.UI.WebControls.TextBox Private designerPlaceholderDeclaration As System.Object Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Priva

          P Offline
          P Offline
          Paulraj G
          wrote on last edited by
          #4

          Hi... Thanks for your reply. I am using c#. so can you please send the code snipt in c#? thanks...

          G.Paulraj

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups