I am trying to save a file to client side using asp.net mvc (vb). I can save a file to client side using the following code.
Dim Options As New ExportOptions
Dim FileOption As New DiskFileDestinationOptions
Options.ExportDestinationOptions = FileOption
Options.ExportDestinationType = ExportDestinationType.DiskFile
Options.ExportFormatType = ExportFormatType.PortableDocFormat
rptH.ExportToDisk(ExportFormatType.PortableDocFormat, "C:\asd.pdf")
Here I am set a destination to save the file. Its working. How a client can choose a destination to save the file? Like the following picture?
How can I do that??
****** EDIT ********
Iam generating content of the file according to users search criteria and from database.