Ask a Question related to ASP.NET General, Design and Development.
-
Anders Borum #1
Re: How To write to a text file.
Hello!
Do the following (this will work, I promise :-):
C#
using HelpMePlease;
class GetHelp
{
public static TryMSDNOrTheSDKDocsFirst()
{
...
}
public static TryMSDNOrTheSDKDocsFirst(GoogleSearch gs)
{
gs.Invoke("I should try MSDN or the SDK Docs first");
}
}
Sorry .. it's friday and I believe you should try a little harder before
asking :-)
--> I want to write to text file the follow text "My name is
> Mike"
>
> now I have used the follow systax
> dim strPath as string = "C:\"
> dim strFileName as string
venlig hilsen / with regards
anders borum
--
Anders Borum 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 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... -
Ravikanth[MVP] #2
How To write to a text file.
Hi
Use the following code.
string sJoblogFileName = "TextFile.txt";
System.IO.StreamWriter LogFile =new System.IO.StreamWriter
(sJoblogFileName,true);
LogFile.WriteLine("blah blah blah");
LogFile.Close();
HTH
Ravikanth
>-----Original Message-----
>I want to write to text file the follow text "My name is
>Mike"
>
>now I have used the follow systax
>dim strPath as string = "C:\"
>dim strFileName as string
>.
>Ravikanth[MVP] Guest



Reply With Quote

