I need help…
Here is my task that I have to do. Its allowed to use the internet for help. And Im stuck and I need help from you guys… sunny wink
Admin application for Kunstgalleriet
An art gallery in Oslo need a web application for their employees to be able to manage information about artists and their paintings and selling. Develop web application based on the specification and the screens below.
Note that parts of the submission task may require some exploration. Use in cases MSDN their websites actively and otherwise online resources you should find.
To create a MSSQL Server database that contains the following tables:
Employee: First, Last
Artist: First, Last, profile picture
Painting: Title, price, picture
Sales: must be in relation with Painting and Employee (which will then be selling in this context)
All tables should have id. The tables Painting and artist must be relational.
To create the following pages:
InnUtlogging.aspx: Side where an employee logs in or out
To add the correct user name and password in a class named User. Ie that in InnUtlogging.aspx.cs must create object of class User to check if the correct user name and password are entered. Let username be “username” and password “password”.
If the employee enters the wrong username or password shall be informed about this
If the employee entering the correct username and password he will be sent to KunstnerAdmin.aspx
KunstnerAdmin.aspx: Site where you can view, add new, delete and update artists
MaleriAdmin.aspx: Side where you view, add new, delete and update paintings
SalgAdmin.aspx: Side where employee records sales
SalgsOversiktAdmin.aspx: Side where you get to see the paintings sold and diverse information in the attachment
Other requirements for the solution:
Navigation Menu is an asp: Menu that is manually style set with CSS
All CSS must be hand coded and reside in an external style sheet
It should look as similar as possible what is shown by the screens below
All aspx pages should have a common Master Page
If employee trying to enter one of the admin pages without being seen, he automatically passed to InnUtlogging.aspx (hint: read about Response.Redirect with MSDN)
Logo will be a link that leads to KunstnerAdmin.aspx
There will be two entities per table in delivery and it can be assumed that there is data in all tables of the solution of the task
You can assume that employees have all images of paintings and artists available with them (download pictures from the web that you use in your solution)
You do not pay attention to whether employee can sign two identical entities
Hints:
One can check which side one is on the HttpContext.Current.Request.Url.AbsolutePath
One can obtain a clean filename with Path.GetFileName ()
Check if employee is logged should happen in the context of the Master Page’s master.cs file
Considering border on the top and bottom that will appear in the selected link in the navigation menu so feel free to use Firebug in Firefox or Tool-> Developer tools in the other browsers
Be sure to test all functionality to work correctly