user1729807
user1729807

Reputation:

How to show SaveFileDialog

How to show SaveFileDialog to user that can select path for save file?

Upvotes: 2

Views: 1034

Answers (2)

sohel khalifa
sohel khalifa

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

andy
andy

Reputation: 6079

You can't do that in Web pages.

You have to do "save file as.." check Link

Upvotes: 1

Related Questions