Link to home
Start Free TrialLog in
Avatar of JT_SIRO
JT_SIRO

asked on

How do I save text file to client computer in ASP.NET?

I create text doc in my .net page that saves to a location on my server.  How do I pop up a dialog for the user to choose the save location, then pass it to my code here:
 
       TextWriter tw = new StreamWriter(@"C:\Deliverables\" + Request.QueryString["j"].ToString().Trim() + @"\" + Request.QueryString["j"].ToString().Trim() + ".txt");
        tw.WriteLine("File Name\tWriters\tPublishers");
SOLUTION
Avatar of joshbula
joshbula

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of SAMIR BHOGAYTA
SAMIR BHOGAYTA
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial