How can i Make A Text File In Memory(Ram -> Save NoWhere) And Write Something On It And Open NotePad on top of Client browser And Open That Text File In It And Let the user save it by him/her self? -> in code behind
thanks in future advance
best regards
You can’t do that.
All you can do is write content of the file to Response with correct MIME type in header (for example “text/plain”) and client browser will open text data with configured viewer for provided MIME type.
http://www.xefteri.com/articles/show.cfm?id=8
Here is slightly modified c# sample code