I have an ASP.NET web application and I need to put data from the web page to the output text file.
I would like to give user an ability to select the folder where the file will be saved. For example, when the user clicks on the ‘Browse’ button the select folder dialog should appear.
Is it possible to implement such thing in the asp.net web application?
EDIT:
Looking at your comment, I think you mean push to the response stream instead?
This should display a dialog box in the browser allowing the user to select where to save the file.
You want to use the FileUpload control
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.fileupload.aspx