1
vote
3answers
103 views
c# HttpWebRequest POST’ing failing
So i'm trying to POST something to a webserver.
System.Net.HttpWebRequest EventReq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create("url");
System.String Content = "i …
1
vote
3answers
111 views
Write a file to desktop of current user in C# asp.net
if i have this code, this creates a problems if other user that dont have acces to the network share tryes to run the method. How can i make this method write the file to the curre …
1
vote
3answers
206 views
StreamWriter Response output - looks fine in Notepad but accents are garbage in Excel
Hi there,
I'm using a technique from another stackoverflow question here, to write a CSV file to the Response output for a User to Open/Save. This is working fine and the file loo …
1
vote
3answers
136 views
Power Loss after StreamWriter.Close() produces blank file, why!?
Ok, so to explain; I am developing for a system that can suffer a power failure at any point in time, one point that I am testing is directly after I have written a file out using …
1
vote
2answers
196 views
StreamWriter won’t flush to NetworkStream
Using a StreamWriter to write to a NetworkStream, and a StreamReader to read the response. The app is sending commands and reading responses to a news server.
Simplified code (sa …
0
votes
6answers
204 views
StreamWriter not writing to an existing file
I am trying to write some text to the file using StreamWriter and getting the
path for the file from FolderDialog selected folder. My code works fine if the
file does not already e …
1
vote
3answers
242 views
Delete file using File.Delete and then using a Streamwriter to create the same file?
public void LoadRealmlist()
{
try
{
File.Delete(Properties.Settings.Default.WoWFolderLocation + "Data/realmlist.wtf");
StreamWriter TheW …
2
votes
4answers
432 views
StreamWriter .NET - how to get the best performance? C# .Net
What is the recommended approach to get the best performance when we need to create text files bigger than 10MB.
There are multiple sections in the code that need to write stuff t …
1
vote
4answers
218 views
Writing file to web server - ASP.NET
Hello all...
I simply want to write the contents of a TextBox control to a file in the root of the web server directory... how do I specify it?
Bear in mind, I'm testing this loc …
0
votes
6answers
585 views
StreamWriter - Not appending to created file
I am using the StreamWriter object to write to either a file that is created by the constructor or already exists. If the file exists then it appends data. If not, then it should c …
2
votes
2answers
804 views
Do I need to do StreamWriter.flush() ?
suppose this code (C#):
using (MemoryStream stream = new MemoryStream())
{
StreamWriter normalWriter = new StreamWriter(stream);
BinaryWriter binaryWriter = new BinaryWrit …
0
votes
3answers
232 views
Streamwriter writes but gives web exception
Hi - I am trying to insert data via web service. The code below writes to the database; however, I have an error (see bottom). What goes wrong here? and how to fix it?
//Create th …
0
votes
4answers
369 views
Why does the .NET Framework StreamReader / Writer default to UTF8 encoding?
I'm just looking at the constructors for StreamReader / Writer and I note it uses UTF8 as default. Anyone know why this is? I would have presumed it would have been a safer bet to …
1
vote
4answers
265 views
Why doesn’t StreamWriter work in a Windows Service?
Hi community,
I have this simple code that records appends a log to a text file:
public static void RecordToFile(string filename, Log log)
{
TextWriter textWr …
2
votes
3answers
941 views
Redirect .NET StreamWriter output to a String variable
I'd like to know if it is possible to redirect StreamWriter output to a variable
Something like
String^ myString;
StreamWriter sw = gcnew StreamWriter([somehow specify myString]) …
