T
tshad
I have a file that I am creating to save my GridView information in a CSV
file to the users computer if they press my Export button.
I am not Downloading or uploading a file just streaming the data
(StreamWriter) to whereever the user wantgs to put this CSV file.
I need to be able to bring up a Save As dialog windows to allow them to tell
me where to create the file.
How would I do this?
I am seeing all kinds of information on the web for using SaveFileDialog,
but it doesn't work in my program.
SaveFileDialog save = new SaveFileDialog();
What do I need to do to get this to work?
Thanks,
Tom
file to the users computer if they press my Export button.
I am not Downloading or uploading a file just streaming the data
(StreamWriter) to whereever the user wantgs to put this CSV file.
I need to be able to bring up a Save As dialog windows to allow them to tell
me where to create the file.
How would I do this?
I am seeing all kinds of information on the web for using SaveFileDialog,
but it doesn't work in my program.
SaveFileDialog save = new SaveFileDialog();
What do I need to do to get this to work?
Thanks,
Tom