1 / 18

Building an e-Business: Internet and Web Programming

Building an e-Business: Internet and Web Programming. Problem Statement. Bug2Bug.com is an online bookstore Each of the books are stored in the database. Bug2Bugs.com publishes the contents of its database on the Web. Storefront model is used.

Télécharger la présentation

Building an e-Business: Internet and Web Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Building an e-Business:Internet and Web Programming

  2. Problem Statement • Bug2Bug.com is an online bookstore • Each of the books are stored in the database. • Bug2Bugs.com publishes the contents of its database on the Web. • Storefront model is used. • Customers can add books to their shopping cart with the simple click of a button. • How to implement?

  3. Client Web Middle Data Three-tier architecture for the Bug2Bug.com online bookstore. Web Server ASP Access Browser HTML ADO Multitier Application Model • Also called n-tier application • Divided application into several parts – tiers • Each tier can be located either on the same, or on different place (computer)

  4. Multitier Application Model • Top tier • The client • Use HTML to design the interfaces with the bookstore • Renders the HTML documents from the middle tier • E.g., HTML files by ASP, XML and XSL • Bottom tier • The database • Accessed by ActiveX Data Object (ADO) from the server • Middle tier • The server • Interacts with both the top tier and the bottom tier

  5. Client-Side Technologies

  6. Server-Side Technologies

  7. Database Technologies

  8. Bug2Bug.com’s home page (Welcome.html). Home Page • When click “Enter”, call the books.asp

  9. List of available books (books.asp). • Call book1.asp, book2.asp, and book3.asp separately when clicks the different book title

  10. Visual Basic information page (book1.asp).

  11. Contents of the shopping cart (viewCart.asp). • Shopping cart is managed by two ASPs –addToCart.asp and viewCart.asp • Click “Ckeck Out” to call order.html

  12. alert box User attempting to submit order with empty field (order.html).

  13. User trying to submit order with State field empty (order.html).

  14. User attempting to check-out form with an invalid state abbreviation (order.html).

  15. Order confirmation (process.asp).

  16. Table of books on back order (backOrder.xml).

  17. Shopping cart documents and their interactions.

  18. Summary of Bug2Bug.com’s documents.

More Related