I need support with this .NET question so I can learn better.
, the default page automatically created is sufficient. Create a folder called Files on the site.
If there are no files in the folder, the web page should show a message indicating so in a box. The outline of the box should be a double line and the spacing between the two lines should be 7 pixels all around (hint: nested divs and css). The message should be centered. The message, no matter how long, should not word wrap. The following is a reference:
If there are files in the folder, you will list them. One row per file showing the file name, file size, and date of the file. Its your choice on the aesthetics. The following is a reference but does not need to look particularly like this:
(Hint: gridview control makes this easy)
The page will have a file upload control where you can upload files to the folder (hint: research fileupload control). You do not have to worry about duplicate files, however as a bonus you can. If the file exists you can save the file with an alternate name such as appending 1, 2, or 3 to the name.
You should start this project as soon as possible. You can ask questions and additionally help colleagues by answering questions if you know the answer in the facebook group. The answers should not spell out solutions, but should also not be too omitting where it is of no help Ill moderate accordingly.
Initial hints: ? Tackle the project in steps ? First use a boolean variable to indicate if file exists or not to show the no file message and a box to show where files would go and test it by changing the boolean variable. ? Then place some sample files in the folder and use code to determine if the boolean variable should be set or not ? Then, put some some sample files in the folder, and work on displaying & formatting those files on the web page. ? Finally, when the site seems to be working fine, work on adding the upload file control and saving files into the Files folder.
Grading: I can open project and it compiles with no errors and runs fine, 25pts When running shows the no files message as described, 25pts Make sure one or more files upload, 25pts Make sure listing of files appears when files are present in the folder 25pts
The post Create a Web Site with one ASPX page appeared first on learnedprofessors.