select a file from one location and into another location
-
HI, I want like 'select a file from one location and into another location' this functionality should be inside gridview and when user edit the gridview row he can change the location of the file and if user want to view the file he need to click on the link means the file path it's self as link. it's possible.if it's then please provide the code or example. Note:-This is web application. thanks
-
HI, I want like 'select a file from one location and into another location' this functionality should be inside gridview and when user edit the gridview row he can change the location of the file and if user want to view the file he need to click on the link means the file path it's self as link. it's possible.if it's then please provide the code or example. Note:-This is web application. thanks
Where are these files ? If they are on the server, then it's kind of trivial, if they are on the client, it's not possible.
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 )
-
Where are these files ? If they are on the server, then it's kind of trivial, if they are on the client, it's not possible.
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 )
-
If you're moving files on the server, then you just need to render some representation of the possible paths a file can live in, and on postback, use the File class to move the file. Why do you want to do this ?
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 )