I have code (below) that opens a dialog box to either open or save a file. What I need to do though, is have the file location in the textbox next to it.
Can anyone tell me the code to do that?
protected void Browse_Click(object sender, EventArgs e)
{
string FileName = "ExporterOutput.txt";
string FilePath = "C:/Users/oZ012D/My Documents/ExporterOutput.txt";
System.Web.HttpResponse response = System.Web.HttpContext.Current.Response;
response.ClearContent();
response.Clear();
response.ContentType = "text/plain";
response.AddHeader("Content-Disposition", "attachment; filename = " + FileName + ";");
response.TransmitFile(FilePath);
response.Write("This is a test line.");
response.Flush();
response.End();
}