Free Programming Website

Free Programming Website www.sourcecodehub.com

Tuesday, August 12, 2014

Librarian Module free asp.net project with source codes

Librarian Module  free asp.net project with source codes

This is an intranet application that is used to by Librarian to do the following:
  • Login
  • Search for books on title and author
  • Issue books to members
  • Handle return of book
  • Generate issues report
  • Displaying book's issues history
  • Displaying member's issues history
The following are the topics of ASP.NET used in this project.
  • Asp.Net 4.0
  • C# Language
  • SQL Server 2005 Express Edition
  • Visual Studio.NET 2010
  • Layered Architecture with Presentation Layer (ASP.NET Pages) and Data Access Layer (C# Classes)
  • All database manipulations are done with stored procedures.
  • Stored procedures are accessed using classes in DAL - Data Access Layer.
  • ObjectDataSource is used in presentation layer to talk to DAL.
  • Master page and themes are used
  • Treeview and sitemap features
  • ADO.NET is used to access database
  • Forms authentication
The following are the major operations in this application.

Steps to download, deploy and run this project

The following are the steps to be taken to run the existing part of the application.
  1. Download librarianmodule.rar and unzip it into any directory in your system. For example, if you extract to c:\ then it will create a directory c:\librarianmodule. The project comes with its own database, which is Database.mdf in App_Data folder. It contains required tables and stored procedures.
  2. Open Visual Studio.NET 2008/2010
  3. Open the project from the directory into which you extracted project. For example, c:\librarianmodule
  4. Run project from Visual Studio.NET.
  5. You should see login.aspx page.
  6. The database that is present in App_Data folder contains some sample data. It has user a with password a.
  7. Test the rest of the options.