Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Uploading File To Server


Hello. I need some code. What is the code for a client and server to upload file to server and then run the file using the client? Thank you in advance!




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Uploading A File To A Server
I have a document (MS WORD) that has to be sent to a web server. How can i send this doc to my web server using VB .

I tried getting a file from any server page using the "Internet transfer control"
. Can i use "Internet controls" and wppost function to post my file back to the server, if so kindly help me to do.

Uploading File To Ftp Server
Hi there,
Can anybody tell me how to upload a file to a ftp suerver using any control (itmay be ITC or MSWinsock control). If code available then I will be very grateful to you.
Thanks in advance

Prashant J.

Automatically Uploading A File To A Server
I'm new to server management. 1) What is the VB code to automatically upload a file, such as the results of a test, to a web server online? 2) What must I do and have on my web server to get this to work?

Here's some code I found that I think will do the trick. I want the user to click a Submit button so it submits the results of a quiz to the WEb server:

Will this work in 6.0? From: http://support.softartisans.com/docs...g_simplevb.htm

A Simple Visual Basic Upload

To use XFile from Visual Basic, add XFile to your list of VB references.
Exercise 3: A Simple Visual Basic Upload

1. Create a new, standard, Visual Basic project.

2. Open the Project menu, select References, and check "SAXFile 1.0 Type Library".

3. Create a command button on your form, name it cmdSendFiles, and give it an appropriate caption (such as, "Upload").

4. Enter the following code in the code section of your form.


Private Sub cmdSendFiles_Click()

'--- Create an instance of the XFRequest object, XFile's principal object
Set XFile = New XFRequest

'--- Set the Server to which you are uploading
XFile.Server = "localhost"

'--- Set the specific script to which you are uploading
XFile.ObjectName = "/SAXFileSamples/asp/post/onefile/formresp.asp"

'--- Set a file to upload
XFile.AddFile "C:oot.ini", "File1"

'--- Begin transferring the files
XFile.Start

'--- Destroy the XFRequest Object
Set XFile = Nothing

End Sub

5. Run the project and click on the upload button. Boot.ini will be uploaded to the local server.

Understanding the Script

* Set XFile = New XFRequest creates an instance of the XFRequest object. XFRequest is XFile's principal object. XFRequest sends the HTTP request (Get, Post, or Put) to the server.

* SAXFile.Server sets the domain to which the file will be posted. In this example we use "localhost." If we were posting through the Internet, we would use the format "www.domain.com."

* SAXFile.ObjectName specifies the exact page to which our request will be posted. In this case, it is formresp.asp, located in /saxfilesamples/asp/post/onefile. Formresp.asp uses SoftArtisans FileUp to process the upload.

* SAXFile.AddFile presets a file to upload. Addfile takes two parameters: the path and file name on the client, and an item name for reference to the file on the server.

* SAXFile.Start initiates the file transfer.

* Set XFile = Nothing destroys the project's instance of the XFRequest object. This prevents draining of your resources.

Regarding File Uploading To Remote Server
Hi,

In my Project I need to upload/Download files to/from remote server,
That i did it using third party OCX.It is working in our site
But when i test it by connecting to our clients site ,it is not working.
any one have any idea Why it is not working?
Regarding this If i need to tell U more details ,send me What I should tell u in detail ?

Thanks in advance
Sav2p1y

FTP Connection To Remote Server And Uploading File
Hello Dears Gurus

I am VB developer and I need ur assistance in the following context

FTP (Uploading and Downloading File)

I am working on different web sites and now I need to connection to my remote server upload some notepad file to my remote server, download some note pad file and delete some notepad file in my remote server I think I can do this through FTP but I donot now how I do this in my Visual basic Codes I need u help I shall be very thankful to u
Secoundly how can I came to know that conection of internet is connected or disconnected

Ok Bye

Tamoor

Uploading Any File Via FTP To A Ftp Server - INCLUDES WORKING SOURCE CODE
I'm just wondering is there any way to do this in VB without the extremely long API or extra modules or anything - like using components such as Winsock or Inet (I've heard it is possible, but maybe that's rubbish).

I haven't got a problem with API or extra modules. It's just that I'm going to need this for a college project which is going to be examined, and I'd rather go through the hassle (if it's worth the time) of learning how to use the control and then using it in my own project. I'd rather not use someone else's code since

1) I'm going to have to reference that in my coursework, which might make examiners go "oh, this person doesn't know real solid programming. He's just copied and pasted anything he could find off the internet. Even a baby can do that!"

2) I could just not reference that, but thats really wrong and they'd probably suspect with all the commenting like

VB Code:
'FTP Transfer via API'(c) John Smith 2005. You can freely distribute this code'Website: [url]http://www.planetsourcecode.com[/url]'Email: [email]johnsmith@someisp.com[/email]'...  


If you could come up with something, then that would be absolutely brilliant. I've tried PlanetSourceCode already and have searched the forums. By the way, I am handing reps out

kregg

File Uploading To Ftp Server: Internet Transfer Control Vs CftpClient Class
I am develping an application which will upload the files to ftp server.
(My application will upload image files to ftp server)

What I found is that there are two ways to do this:

1. By using : Internet Transfer Control
2. By usging:CftpClient class/ ftpFiles and related classes

I got sample code on both of these.

But: "Which one is better and effcient. Which method should I use."
Please help and guide and if you can tell the difference between these two methods.

Please help and guide.

Uploading SQL Server Database To The Web Server
Hello,

What is the way of uploading SQL server database to the Web Server
(Webserver say websamba) along with ASP.NET files.

Actually i am making a website with ASP.NET and SQL SErver 2000


PLz reply.

C.B.Bakshi

Uploading To Server
I am totally confused and don't have a clew on where to start. I need to upload a file from an app.path to my file server to update files for my website easier, as well as friends being able to do things. How would i go about doing this i know Inet would be hard and would require php to work with it so i scrapped that idea. Winsock maybe? or windows ftp. Any ideas and if anyone could code an example even better i am rushed for time. Thanks for your help in advance.

Uploading To Server
Any easy code samples for uploading web pages to a server using VB out there?

Uploading To A Web Server
HELP!!!

I need to know how to upload and download files from a webserver.

I have acess to the server, but I need to write and application that would put a file on the server, and then have another application remove it.

If any one can post a little code on how to do this I would appreciate it more than words can say.

Uploading To Web Server
Hi all,

I want to build a program in vb that can upload files to a folder inside the "_private" folder of my microsoft frontpage web site. If anyone has any ideas on how to do this i would greatly appericate it.


Thanks


Brad Yeadon

Uploading SQL Server
Hello guys, Im working on a database driven website running on SQL Server 7 database. I understand dat SQL Server database are not movable. So How do i upload it along with other pages to the web server.

Thx

Trouble Uploading .jpg To Ftp Server
ok, i am using the following vbcode in hopes of uploading a .jpg file to my ftp web server. This code lets me upload a smaller .txt file but the .jpg doesn't transfer.. any ideas?

Public Function UploadFile(ByVal HostName As String, _
ByVal UserName As String, _
ByVal Password As String, _
ByVal LocalFileName As String, _
ByVal RemoteFileName As String) As Boolean
Dim FTP As Inet
Set FTP = New Inet
With FTP
.Protocol = icFTP
.RemoteHost = HostName
.UserName = UserName
.Password = Password
.Execute .URL, "Put " + LocalFileName + " " + RemoteFileName
Do While .StillExecuting
DoEvents
Loop
UploadFile = (.ResponseCode = 0)
End With
End Function

---the button is on a MS Access form----

Private Sub Command54_Click()
Dim b As Boolean
Dim filename, filename1 As String
filename = Me!txtImageName ' the full path of the image file from my form
filename1 = Me!ImageFileName ' the image file name
b = UploadFile("ftp.mysite.com", "username", "password", filename, filename1)

If b Then
MsgBox "Upload transfer completed"
Else
MsgBox "File not transfered"
End If
End Sub

Uploading Images Using VB And MS-SQL SERVER
hi,

I want to upload images into the SQL SERVER database using
VB. I want images to be stored in the database and not the path of where images are located on the hard-disk

how can I do it

VJK

Uploading Textfile Into SQL Server
Hi, I want to upload a Text file into SQL Server, without
using ODBC (using open function). IF my text file has 8000
thousand lines, then it will take too much time to read
line by line and writing into a database. Help me out to resolve this problem.

Uploading And Downloading To/from Server
I have created an application in VB6 that uploads and downloads data files to a folder which I created on a website server. I use a utility called FTP Client Engine to do the file transfers. It work most of the time. Unfortunately, that's not good enough.

The issue is that I need a way to do this that has bullet-proof, industrial strength reliability. I will have customers who will depend on downloading data on a daily basis to update their financial charts.

I am considering upgrading to Visual Studio 2005 and using VB.Net with it's built-in file transfer functions.

I am working with two file sizes. One type of file is about 200MB, the other is about 0.1MB.

I would appreciate suggestions from anyone who has experience with doing this kind of thing.

Uploading Files To Server
Hiya
I am writing an application in which several users at different locations need to be able to upload their files (in excel) everyday at a website ( to my server) and then I am going to read those files and retrieve data to transfer to sql server for other applications.
Can anyone tell me how to provide such a feature for uploading files and then posting it to server? I guess something using ASP and VB script.

Thanks !
Zee

Uploading Pictures To Server With ASP - PLEASE HELP!
Hi, please help me, i need to figure out how to upload a picture file (jpg, gif) or whatever (wav, etc) to the server from an asp page..

1. Is it possible to bring out a select file dialog and then the user selects the file and an upload starts (JUST LIKE UPLOADING MP3S ON MP3.COM)..

2. And how do i figure out when such file transfer is finished so i can redirect the page or something.

I need this badly, so if you have any idea or a piece of code please reply!

---------------------------------
The Decayed - the_decayed@hotmail.com

Uploading Files To Linux Server. Pls Help Me Out.
I am using MsProject Component and on a button click it should upload the MSProject (MPP)file on to the server(linux).. is it possible ! !

Uploading Excel Data To SQL Server
Hi, I want to upload datas from Excel to SQL server through backend, i may have more than 1 worksheets.
Please help me............

Uploading Excel Data To SQL Server
Hi, I want to upload datas from Excel to SQL server through backend, i may have more than 1 worksheets.
Please help me............

Uploading Images Into SQL SERVER Database
hi,

I want to upload images into the SQL SERVER database using
VB. I want images to be stored in the database and not the path of where images are located on the hard-disk

how can I do it

VJK

Uploading Data On Remote Ftp Server Using VB6.0
Dear All

I want to do the following using VB 6.0.Any help will be highly appreciated.

1.Establish connection to the remote FTP host.
2.Authenticate the user. (Ex:-Username anonymous pwd abs@xyz.com)
3.Upload all zip files to the FTP server (ex:172.10.5.9/Folder/) from the local system.(c:*.zip)
4.Rename the uploaded zip files or move to another folder on local system.

This should happen everyday at 1:00 AM (Schedule)
If anybody hv sample program then pls forwrad it to me.

Thanks

Waiting for a +ve response

Uploading Images Into SQL SERVER Database
hi everybody,

I want to upload images into SQL SERVER database. I want images to be stored in the database and not the path of the images.

how can I

I am using VB 6.0

Need To Know How To Uploading VB+access Database To Web Server
i am at present working on a project that is using access tables and forms and vb code behind it and i looking to put an asp front end on it so i can access it through the web can someone tell me if this can be done and if so how

Uploading In Visual Basic 6 In Sql Server 2000
can you pls. teach me how to upload in sql server 2000 using visual basic 6. thanks.

Connection Resets When Uploading Files From A Client-server Application
Hi, hope someone could help me out on this.

I am debugging an existing client-server application written in vb 6. This application basically uploads files from the client app to the server. The post will be handled by an ASP page that calls an IIS Application(Web Class). It seems to work fine, but when I tried doing uploads for files greater than 4MB, a timeout error was returned. When I looked at the IIS log, it has an sc-status 200 and sc-win32-status 64.

The server app resides in win 2k3 enterprise ed. sp 1 that acts as a domain controller. I have a client app running on win xp professional sp 2. When uploading files from winxp to win 2k3, even up to 6MB, no timeout error was returned. But when trying to simulate the action by uploading a file in client app in win2k3 to the server app that resides in the same machine, the error occurs.

Based on my researches, sc-status 200 means that the request have been successfully done by the IIS. According to microsoft, the sc-win32-status 64 message means that "The specified network does not exist", meaning the client resets the connection after receiving the final response from IIS.

I've done many configuration tweaking, such as increases in IIS connection timeouts, ASP file buffering, etc, even installed hotfixes (Microsoft KB898708) but to no success. I've also tried monitoring the activity thru TracePlus Winsock but I couldn't pinpoint exactly where the connection resets because the application hangs after clicking the upload button.

I'm looking at the angle that the problem has something to do with the client program, which was written using Microsoft Internet Transfer Control (MSINET), a wrapper class for WinInet. Thus, I would like to have a good monitor that oversees the client request-response activity while connected to the server so that I would be able to catch the reset error. Can someone direct me to the appropriate mechanism may it be a software, approach, whatever! Moreover, can you shed some light why does this happen? I am desperate as I have already spent 3 weeks and counting solving this bug.

Please please PRETTY PLEASE?!?!

Many thanks!

Connection Resets When Uploading Files From A Client-server Application
Hi, hope someone could help me out on this.

I am debugging an existing client-server application written in vb 6. This application basically uploads files from the client app to the server. The post will be handled by an ASP page that calls an IIS Application(Web Class). It seems to work fine, but when I tried doing uploads for files greater than 4MB, a timeout error was returned. When I looked at the IIS log, it has an sc-status 200 and sc-win32-status 64.

The server app resides in win 2k3 enterprise ed. sp 1 that acts as a domain controller. I have a client app running on win xp professional sp 2. When uploading files from winxp to win 2k3, even up to 6MB, no timeout error was returned. But when trying to simulate the action by uploading a file in client app in win2k3 to the server app that resides in the same machine, the error occurs.

Based on my researches, sc-status 200 means that the request have been successfully done by the IIS. According to microsoft, the sc-win32-status 64 message means that "The specified network does not exist", meaning the client resets the connection after receiving the final response from IIS.

I've done many configuration tweaking, such as increases in IIS connection timeouts, ASP file buffering, etc, even installed hotfixes (Microsoft KB898708) but to no success. I've also tried monitoring the activity thru TracePlus Winsock but I couldn't pinpoint exactly where the connection resets because the application hangs after clicking the upload button.

I'm looking at the angle that the problem has something to do with the client program, which was written using Microsoft Internet Transfer Control (MSINET), a wrapper class for WinInet. Thus, I would like to have a good monitor that oversees the client request-response activity while connected to the server so that I would be able to catch the reset error. Can someone direct me to the appropriate mechanism may it be a software, approach, whatever! Moreover, can you shed some light why does this happen? I am desperate as I have already spent 3 weeks and counting solving this bug.

Please please PRETTY PLEASE?!?!

Many thanks!

Reading Excel File Using Vb6 And Uploading The File In The Database
good afternoon,
im creating a project that requires an excel file to be
read in VB6 and uploading it to the database.
i have successfully done the reading of excel in VB using fso but now,
the problem is i don't know how to upload this file in the database
and to make a checkpoint whether the data in the file is already in the database.
i've been trying so hard on this project for weeks but
can't get the answers.
please help me with my codes.

thank you so much in advance for your prompt help

btw, here's the code for reading the excel file

Dim cnncomp As ADODB.Connection
Dim rstcomp As ADODB.Recordset
Dim fso As Scripting.FileSystemObject
Dim lngrow As Long
Dim lngColumn As Long


Set fso = New Scripting.FileSystemObject

If (fso.FileExists(App.Path & "PcompList.UDL") = False) Then
MsgBox "ERROR: DSN / UDL file does not exist"
GoTo CLEAN_UP
End If

If (fso.FileExists(App.Path & "PcompList.xls") = False) Then
MsgBox "ERROR: Database file does not exist"
GoTo CLEAN_UP
End If

Set cnncomp = New ADODB.Connection
Set rstcomp = New ADODB.Recordset

cnncomp.Open "File Name=" & App.Path & "PcompList.UDL"

rstcomp.Open Source:="SELECT * FROM ""Sheet1$""", ActiveConnection:=cnncomp, CursorType:=adOpenStatic

If (rstcomp.BOF = True) Then
MsgBox "ERROR: no records in the database!"
GoTo CLEAN_UP
End If

rstcomp.MoveFirst

If (rstcomp.RecordCount = -1) Then
MsgBox "ERROR: record count = -1. Is the cursor type set incorrectly on the recordset open statement?"
End If

MSFlexGrid1.Rows = rstcomp.RecordCount + 1
MSFlexGrid1.Cols = rstcomp.Fields.Count

ReDim Components(0 To rstcomp.RecordCount - 1)

Call WriteGrid(0, 0, "wistron p/n")
Call WriteGrid(0, 1, "description")
Call WriteGrid(0, 2, "vendor")

MSFlexGrid1.ColWidth(0) = 1250
MSFlexGrid1.ColWidth(1) = 1250
MSFlexGrid1.ColWidth(2) = 1250


lngrow = 1
While (Not rstcomp.EOF)
For lngColumn = 0 To rstcomp.Fields.Count - 1
Call WriteGrid(lngrow, lngColumn, chknull(rstcomp.Fields(lngColumn).Value, ""))
If (lngColumn = 0) Then
Components(lngrow - 1).ProductName = chknull(rstcomp.Fields(lngColumn).Value, "")

lstProductName.AddItem chknull(rstcomp.Fields(lngColumn).Value, "")
Else
Components(lngrow - 1).Ingredient(lngColumn - 1) = chknull(rstcomp.Fields(lngColumn).Value, "")
End If
Next lngColumn
lngrow = lngrow + 1
rstcomp.MoveNext
Wend


CLEAN_UP:
If (Not (rstcomp Is Nothing)) Then ' see if recordset was set
If ((rstcomp.State And adStateOpen) = adStateOpen) Then ' see if recordset was opened
rstcomp.Close
End If
End If
If (Not (cnncomp Is Nothing)) Then
If ((cnncomp.State And adStateOpen) = adStateOpen) Then
cnncomp.Close
End If
End If
Set fso = Nothing
Set rstcomp = Nothing
Set cnncomp = Nothing

End Sub

Uploading A File
hello all i am using vb6. i need an easy way to upload a file to a web site, how ca i do it any help.. plz if u know can u provide a small example ?

Uploading File To FTP
Hey,
I'm a noob at codeing.
So im trying to upload a file to FTP and add random numbers to the name of it.
Does anybody have a code that will do this?

Uploading File Tp FTP
Westconn have given me a code to upload file to ftp. He also checked it from his pc.I also provided him my username and password. The file is uploading from his pc but there is an error at line "if not ret=1 rthen stop. I am uploading the project. Please check it.

Uploading File To Ftp
I am receiving error in the following code. This is a code to upload files to ftp server.


Code:
Private Sub Form_Load()
'Server Access type
Inet1.AccessType = icUseDefault

'Protocol to be used
Inet1.Protocol = icFTP

'Remote host name
Inet1.RemoteHost = "ftp.avi-bags.com"

'Server port number, usually its 21
Inet1.RemotePort = "21"

'Server password
Inet1.Password = "passsword"

'Server Username
Inet1.UserName = "username"

'Server session timeout
Inet1.RequestTimeout = "60"
End Sub

Private Sub Command1_Click()
'Uploading file to server
'PUT method is a command in FTP to upload file to a server
Inet1.Execute , "PUT ""c:vivek.txt""" & "vivek.txt"
MsgBox Inet1.ResponseInfo
End Sub


The error is "Unable to connect to remote host". I have also used ftp://avi-bags.com. But i am getting the same error.

FIle Uploading
hi,

ive been trying to find tutorials of using VB / Asp to create a file uploading system which is preferably in an active X control.

does nay1 know of any tutorials / examples??

many thanks.

Uploading A File
hello all i am using vb6
i am using this code to download a file
VB Code:
Private Declare Function URLDownloadToFile Lib "urlmon" _Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As String, _ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As _Long) As Long Public Function DownloadFile(URL As String, LocalFilename As String) As Boolean    Dim lngRetVal As Long    lngRetVal = URLDownloadToFile(0, URL, LocalFilename, 0, 0)    If lngRetVal = 0 Then DownloadFile = TrueEnd Function Private Sub Form_Load()    'example by Matthew Gates (Puff0rz@hotmail.com)    DownloadFile "http://www.freewebs.com/ziad_jabbour/mytext.txt", "c:downfile.txt" End Sub
what code should i use in order to upload a file over the net
plz provide me with some information and if there is an easy way like this or should i use a control ( provide the control name ) and the cose that should i write

Uploading A File Through Ftp?
Does anyone have a simple source, just to upload a file to a ftp server? That's all I need, nothing fancy. Thanks.

Uploading A File
We have customers that will use a program that I am currently working on to build complex orders. I have that order exporting from an access database to an xml file on the client machine. Now I need to get it to our servers and into the order databases.

I was thinking of using FTP to our servers and then processing it somehow (any suggestions?) or sending it via email to our exchange server and then having an event process the order when it arrives. Any suggestions? How would you recommend doing it? Feel free to suggest another method.

Thanks!

Uploading A File
How do you upload a file???

File Uploading
        In my Vb project , I need to upload a mdb file from given location in Local machine to web.
how it can be done in VB. If any one Know ,send reply immediately, it is urgent Plz

With thanks
Sav2p1y

UPloading A .xls File In VB
How can i Upload a spread sheet to a oracle database using vbforms... Can any one help me?

File Uploading Using ASP!Help!!!
Hi,
I am currently working on a web site which allows users to submit images over the internet. I have to use ASP along with SQL Server.

I understand that a component needs to be created which is going to reside on the server and that component has to be called in ASP file. I need some help with builiding that component.

As of now I don't have a clue what I need to do to allow a user to upload an image so that it gets stored in the database.

I would really appreciate it if someone could help me out.

Please somebody help me!!
Thank you

File Uploading!! Somebody Help Me PLEASE!!
Hi,
I am currently working on a web site which allows users to submit images over the internet. I have to use ASP along with SQL Server.

I understand that a component needs to be created which is going to reside on the server and that component has to be called in ASP file. I need some help with builiding that component.

As of now I don't have a clue what I need to do to allow a user to upload an image so that it gets stored in the database.

I would really appreciate it if someone could help me out.

Please somebody help me!!
Thank you

FIle Uploading Using VB
Hi Genies

I am very new to VB. I would like to upload the file from one server to another using VB and HTTP. Is that possible ?

How can i achieve this ? Please direct me to some useful links.

Thanks
Shan

Automating File Uploading
Hi,

One good use of visual basic is to automate various acts on the web.

However, there is one element I cannot automate. The file element. The sort of element we use to upload files to the web.

How can I automate that?

File Uploading Query
hi,

I have prepared one application in which i have to upload a picture and save it in database. Later when i want to view that picture i will call it from database and the picture should be visible in the picture box area defined by me.

Now for uploading the photograph i have written this code

visual basic code:
Private Sub cmdChUpdPhotograph_Click()
Dim mPhotopath as String
cdlgPhotograph.Filter = "Bitmap Files (*.bmp)|*.bmp|JPEG Files (*.jpg)|*.jpg"
cdlgPhotograph.ShowOpen
txtPhotograph.Picture = LoadPicture(cdlgPhotograph.FileName)
mPhotoPath = cdlgPhotograph.FileName
End Sub



For viewing i have wriiten this code

visual basic code:
Private Sub CmdOpen_Click()
On Error GoTo Hell
Dim rsCDetails As ADODB.Recordset
Dim CDetailQuery As String
CDetailQuery = "SELECT * FROM client_profile WHERE serialno = '" & lvwclientprofiles.SelectedItem.Text & "'"
Set rsCDetails = OpenRecordSet(CDetailQuery)
With frmClientProfile

.txtPhotograph.Picture = rsCDetails(9)

End With
Exit Sub
Hell:
MsgBox "Description: " & Err.Description & vbCrLf & _
"Number: " & Err.Number, vbOKOnly + vbInformation, "Error - Called from " & Me.Name & " Sub Form_Load"
End Sub



Now is the correct way of uploading and viewing the a picture. I am a little confused.

Guys please guide me through this

regards,
kaushik

Uploading An Xml File To A Website
Hi Guys,
can we able to upload a file to a website using wininet? I know that we can do this ftp but i need this using HTTP only. I was also able to post a string to a website but now I need to post an xml file(not only string but also with file name) to a website. How would i do that? Any kind of input is appreciated.

DilSe..

Uploading A File To A Ftp Site????
Hi!

Is there any way to connect to a ftp site and login and after that upload a file from my local disc to the ftp site???

Some useful code would be great.....

/Smirre

Uploading Db File Automatically
Is there code that i could use that would automatically upload a database file (db1.mdb) to my fortunecity web server?? would i need to write code for FTP upload??

Copyright © 2005-08 www.BigResource.com, All rights reserved