Ask a Question related to ASP.NET General, Design and Development.
-
Mike John #1
How can I write to text file.(ftp)
I want to write to text file, the follow text " My Name Is
mike"
Now, I have used the following sysntax:
dim strFilePath as string = "C:\"
dim strFileName as string = "MyFile.txt"
fileopen(1,strfilepath & "\" & strfilename,output)
write(1," My Name Is mike")
fileclose(1)
now, assum that the filepath is a folder that I am ftp to
it. for example : ftp:\\[url]www.mysite.com\myfolder[/url].
now, how can I open the file to write to in the myfolder
folder instead of the C Drive.
Sincerely yours
Mike John
Mike John Guest
-
Write to text file?
The age old question has been "how do you use Flash to write to a file", and the answer has and likely will always be "you can't. You have to use a... -
write text file to the server
What I am trying to do is get query results then use the results mixed with a little bit of simple HTML and then save that as a .txt file in a... -
write a text file to a server
hi is it possible to open, change and save a simple txt file on a remote server with flash mx without php or cfm? the idea is to have a very simple... -
Write in a text file ?!
Is there a way to write and read in a text file ? I know how to read from a textfile, but I was wondering is there's any function or action to print... -
How To write to a text file.
Hello! Do the following (this will work, I promise :-): C# using HelpMePlease; class GetHelp { -
Cowboy \(Gregory A. Beamer\) #2
Re: How can I write to text file.(ftp)
You will have to set up an FTP client that allows the file to be opened and
remembers the path to overwrite the file when save is clicked. I would start
looking at sites like [url]www.planetsourcecode.com[/url] or [url]www.sourceforge.com[/url] (or
even [url]www.gotdotnet.com[/url] in the new workspaces) for code projects using FTP.
You will have to use some form of store (whether in memory or on the drive)
prior to sending via FTP, as FTP works with files. It is not the same
concept as opening a file and editing on a local drive (well, ultimately it
is, but there are more layers of crap).
You will want to catch exceptions on save as the connection may time out.
You will have to reopen the FTP site for the user and then FTP the file back
in these instances.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge
************************************************** **************************
****
Think Outside the Box!
************************************************** **************************
****
"Mike John" <RiadeAsleh@Hotmail.com> wrote in message
news:0dd801c34d2f$3d901400$a301280a@phx.gbl...> I want to write to text file, the follow text " My Name Is
> mike"
>
> Now, I have used the following sysntax:
> dim strFilePath as string = "C:\"
> dim strFileName as string = "MyFile.txt"
>
> fileopen(1,strfilepath & "\" & strfilename,output)
> write(1," My Name Is mike")
> fileclose(1)
>
> now, assum that the filepath is a folder that I am ftp to
> it. for example : ftp:\\[url]www.mysite.com\myfolder[/url].
>
> now, how can I open the file to write to in the myfolder
> folder instead of the C Drive.
>
>
> Sincerely yours
>
> Mike John
>
Cowboy \(Gregory A. Beamer\) Guest



Reply With Quote

