954,557 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Formatting Browse button

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();
}

sastokes
Junior Poster in Training
50 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0
 

Easy:

Private Sub opendialog_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles opendialog.FileOk
        filenamefield.Text = opendialog.FileName
    End Sub


opendialog = The file dialog
filenamefield = The textbox next to the button

butler1233
Newbie Poster
7 posts since Sep 2010
Reputation Points: 10
Solved Threads: 0
 

Sorry I needed this in code-behind.

sastokes
Junior Poster in Training
50 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0
 

oh... can't help you there. Have fun.

butler1233
Newbie Poster
7 posts since Sep 2010
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: