Hello,
I want to save MemoruStream, and I use folowing:
...
response.BinaryWrite(myStream.ToArray());
response.End();
User gets saving dialog and he can chose to save file or to cancel saving. But, problem is that can't continue to run code if user chooses to cancel download or, if he chooses to save file. I want to call another method afther that to update some tables in database, but I can`t do this.
So, is there some other way to save my memorystream? Some javascript or something?
Bye