how to implement browse button
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
hi all, Can you please help me out, how to implement browse button. i want path of the selected file. Thanks in advance!
Imran. Mohammed wrote:
how to implement browse button. i want path of the selected file.
Use
FileUpload
Control. To get the file name useif (FileUpload1.HasFile)
FileUpload1.PostedFile.FileName
-
hi all, Can you please help me out, how to implement browse button. i want path of the selected file. Thanks in advance!
There is an ASP.NET file selection control, that's what you need.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )