mvc

by Prasad Gavande

JavaScript

Library management system.
Conference booking system.
Survey management system.

Authentication
Role based menu from database.
User and admin login.
CRUD 
Book add update delete. Quantity maintainance.
Maintain proper book codes.
Check user application and Issue a book.
Reports history bookwise datewise.
Delay charges(admin).



user login.
dashboard.
current issued books along with submission dates sort by submission date in asending.
according to submission dates change the color of records.
Apply for book : Check book availability and allow to borrow. If not available, Show the message and approximate date at what book will be available.
check max limit of number of books to be issued to user.
If book is issued change the available count.

send mails for users about book submissions.
--------------------------------------------------------------------------------------------------------------



Develope an MVC application for Library Management System.

Implement below functionality of the business:

1. Application should be accessible only to authorized users. Implement Login page.

2. Any user should not access the any forms without authentication. System should redirect the web page request to "Session Expired/Access Denied" page.

3. Create required database tables in SQL Server. Application should able to connect the database server using configuration.

4. The application will manage the master data of books and the books issue transactions.

5. Depending on the user role, give them menu access. Create role base menu. (Admin and user)

5. Create a master module to manage Books and it should be accessible to admin only

	a) Initially all books should be displayed in grid format.

	b) on the Grid view page, provide "Add New Book" button to add new book in library.

	c) On each row Edit and Delete buttons (icons) should be provided to perform Edit or Delete operation.

	d) On each operation, the status (Success or Failure) should be displayed on the top of...