Free Programming Website

Free Programming Website www.sourcecodehub.com

Tuesday, August 12, 2014

Task Manager free asp.net project with source codes

Task Manager  free asp.net project with source codes

This website allows users to manager their tasks (todo list). Once user registers, user can manager his/her tasks using this website. This website used the following tools and technologies.
  • Asp.Net 4.0
  • C# Language
  • SQL Server 2005 Express Edition
  • Visual Studio.NET 2010
  • Layered Architecture with Presentation Layer and Data Access Layer
  • Some database operations are done with stored procedures.
  • ObjectDataSource is used in presentation layer to talk to DAL.
  • GridView and DetailsView are mainly used to display and modify data
  • ADO.NET is used to access database
  • WebService and AJAX are used to validate user registration
  • Web User Controls
  • Validation Controls
  • Forms Authentication
  • Mutlitple Authorizations - one for website and one for all folder
  • hMailServer to send mails during password recovery
  • Master pages and themes
  • Calendar Extender of Ajax Control Toolkit

The following are the major operations in this application.
  • Registration
  • Forgot Password
  • Login
  • Change password
  • Home page to list upcoming tasks
  • Add Task
  • Search Tasks by Title or Description
  • Advanced Search of Tasks
  • Completion of Task
  • Updation of task
  • Deletetion of task
  • Listing history of completed tasks
  • Logout

Steps to download, deploy and run this project

The following are the steps to be taken to run the existing part of the application. Sql Server database, which contains all required table and stored procedures, is boundled along with this application.
  1. Download TaskManager.rar and unzip it into any directory in your system. For example, if you extract to c:\ then it will create a directory c:\taskmanager.
  2. Open Visual Studio.NET 2010
  3. Open the website from the directory into which you extracted the .rar file. For example, c:\taskmanager
  4. Database (Database.dbf) is placed in App_Data and it contains required tables and stored procedures
  5. Create Table and Create/Alter Procedure commands are placed in tables.sql file in the website
  6. As it used CalendarExtender of Ajax Control Toolkit, download Ajax Control Toolki, add it to toolbox and use Calendar Extender. For details, please search in Google.
  7. Go to Solution Explorer and make login.aspx the startup page.
  8. Run project from Visual Studio.NET 2010
  9. You should see login.aspx page.
  10. Login using email address srikanth@gmail.com and password s.
  11. Test the rest of the options.