Using ASP.NET Web Application which comes with Register and Login process included.
I have included Menu Button named "My Files" so that the page would be accessible if and only if the user is logged in.
On My Files page, I have inserted Filupload Control so that the user could upload file. I am using Database to store the information as you can see in Source code provided (Table section and DataSet)
"Let me know if I designed incorrect dataset or table".
Now, I want more functionality i.e.
1) User could create Directory and then using FileUpload control, user could upload the file in the created directory.
I think it would be easy if I could have a proper file manager in which user could upload file, download file, upgrade file, delete file.
Any thoughts?
Thank you,
Shaikh Obaidullah
Loading
Suthish NairPosted Jul 3, 2011, 5:09 PM
Obaid ShaikhPosted Jul 3, 2011, 3:52 PM
Thank you,
Shaikh Obaidullah
Suthish NairPosted Jul 3, 2011, 1:14 PM
Depend on User Session you can Create a File or Folder
How to get files from directory
using System.IO;
Displaying Images in a GridView Column
Obaid ShaikhPosted Jul 3, 2011, 12:50 PM
At least somebody tell me how to manipulate the following scenario:
1) Whenever a User get registered a new directory should be created automatically at the specified path so that every user will have its own directory. Directory name should be same as its username.
2) Now, as every user will have its own directory so, in case of displaying the files (which user have been uploaded previously for example). In Gridview or any other way if you suggest, how to show the files only from that particular user. For example: user1 will get its own files in a Gridview and user2 will get its own files in Gridview.
I hope someone would help me out.
Thank you,
Shaikh Obaidullah