Reputation:
How to show SaveFileDialog
to user that can select path for save file?
Upvotes: 2
Views: 1034
Reputation: 5578
You cannot show SaveFileDialog
in the ASP.net
code because it is executed on the server side.
Normally in such cases, flush the files/ images as bytes and a dialog appears to the user either to open it or save it on their machine.
Upvotes: 0