online book shopping

13
ONLINE BOOK STORE BY LaxmanaRao

Upload: laxmana-rao

Post on 03-Mar-2017

248 views

Category:

Software


1 download

TRANSCRIPT

Page 1: Online Book shopping

ONLINE BOOK STORE

BY LaxmanaRao

Page 2: Online Book shopping

ContentsIntroduction What Is online book store?ObjectiveRequirementsImplantation AdvantagesConclusion

Page 3: Online Book shopping

Introduction

C++ is a major Language in the software world. Just like the computer world moved from DOS to windows, now they are moving to .NET.

C#.NET,ASP.NET is Microsoft’s product for developing web applications.

Page 4: Online Book shopping

What is online book store • Online Book store is an online web application where

the customer can purchase books online. Through a web browser the customers can search for a book by its title or author, later can add to the shopping cart and finally purchase the books.

• The Online Book Store (OBS) application enables vendor to setup online book store, customers to browse through the books, and a system administrator to approve and reject requests for new books and maintain lists of book categories.

Page 5: Online Book shopping

Objectives The main objective of “Online Book Store” is to

provide an essence of online book store via a simple and yet powerful medium.

The project has been designed to simulate the working of an actual online book store.

Page 6: Online Book shopping

Requirements

Hardware requirements(min.)• 512 MB of RAM• Pentium processor or higher.

Software Requirements(min.)• Microsoft Visual Studio 2010 or More • SQL Server 2008

Operating system• Windows XP or later.

Page 7: Online Book shopping

Implementation class book{char name[30];long int tel;public:void read(){cout<<"name:-“ ;cin>>name;cout<<name;cout<<"tel:";cin>>tel;}

Page 8: Online Book shopping

PURCHASER Details void disp(){cout<<"PURCHASER DETAILS : ";cout<<“\nName : "<<name;cout<<“\nTel No.:"<<tel;}

Page 9: Online Book shopping

void main(){Object Creation is done here only;cout<<"Enter details of purchaser : ";Read Method is going here cout<<"Enter the details of the book sold : ";Read Method is going here retrun 0;}

Page 10: Online Book shopping

class shop:public book{char isbn[20],bname[30];long int price;public:void read(){cout<<"Book-Name : ";cin>>bname;cout<<"ISBN NO. : ";cin>>isbn;cout<<"Price of Book : Rs.";cin>>price;}void disp(){cout<<"BOOK DETAILS :";cout<<"Book-Name :" <<bname;cout<<"ISBN No. :"<<isbn;cout<<"Price : Rs."<<price;}

Page 11: Online Book shopping

Advantages

• Cost saving• Time saving• Fast purchasing• View books of all categories

Page 12: Online Book shopping

Conclusion Online Book store is an online web application where

the customer can purchase books online. Through a web browser the customers can search for a

book by its title or author, later can add to the shopping cart and finally purchase the books.

Page 13: Online Book shopping

THANK YOU

For your Attention