CSS Project 1
CSS Project 1
POLYTECHNIC, KOPARGAON
(2019 - 2021)
Mr.S.A.Patil
CERTIFICATE
Are bonfire work carried out by above students under the supervision of Mr
mr.S.A.patil and it is submitted towards the partial fulfilment of the
requirement of MSBTE, Mumbai for the award of Diploma in Computer
Technology.
1 Introduction 4
Rationale
2 5
Aim /Benefits
3 5
Course Outcomes
4 Achieved
6
Literature Review
5 7
Actual. Methodology
6 follow( 8
8 Program 9-14
9 Output
15
Skills
10 devolvement/learning
outcome of this Micro 16
project
Application of this micro
11 project 17
Conclusion
12 18
Reference 18
13
.
Introduction
Nowadays most of the purchasing of the items that are
needed for the daily basis, can be got through the online
mode. There are many shopping websites like Amazon,
Flipkart, snap deal, Jabong, Shop Clues and many more.
People without wasting much energy in going to the shops
to buy the shopping items that are required can purchase
it through the shopping websites. The Online Shopping
System is the application that allows the users to shop
online without going to the shops to buy them. This will
help in saving the energy, fuel, time needed to do the
shopping by going to the shops. Customer database
management system: The information of the customers
doing the online shopping must be maintained in a well
organized wa
Any shopping website that is concerned will be able to
attract more customers only if the items purchased will be
delivered on time. The user interface should be simple and
easy to understand even by the common people. The
backend should have a strong database. This will be one of
the interesting projects that the final year students can
work on.
Rationale
Online Shopping management system is
beneficial for the management of Users and as a
software it will help in developing professionalism
Users to interact with system.
Aim /Benefits
To develop Online Shopping Management
website and perform validation of forms.
Course Outcomes Achieved
a) Design interactive web page using program flow control
structure.
b) Develop event based forms and handling cookies using
JavaScript.
c) Design Interactive web page using regular expressions
for validations.
d) Design Menus and Navigation in web pages.
Literature Review
JavaScript is mainly used for validations. Having
excellent RegEx and robustness JavaScript is
widely used for pattern matching and validations
of forms on client side. Validating forms on client
side greatly reduces server load and helps in
boosting website experience.
JavaScript is also widely used for enhancement
of user experience on side by making them
dynamic.
The main advantage of Online Shopping
Management System is dynamic Management
software. This software is ideal for Online
Shopping Management. This software Manage
Database, admin login and register the new
employee. It will displays the all information
about users.
Actual Methodology Followed
Online Shopping management system is developed with functionalities such as admin login, New
Registration, view the details of users. This software also provide an Build Database.
Admin Login:
In this section admin can login. This is main page providing personalized access and services to
admin. If admin haven’t remind password he/she can forget the password using the forget password
link provided at bottom of the login page. Admin login is also the first form to be displayed. Admin
credentials will be verified with database table user.
Username should be in pattern of alphabets only and password should be alphanumeric as well as
symbols.
Registration:
In this section admin can register the User. User registered by accepting the information such as
their first name, last name, qualification, field of study, university, date of join, etc. All the
information entered by admin of the user will be inserted into the database table user for further
verification.
Admin Options:
<html lang="en-US">
<head>
<meta charset="UTF-8">
<script src="Storage.js"></script>
</head>
<form name="ShoppingList">
<fieldset>
<legend>Shopping cart</legend>
</fieldset>
<div id="items_table">
<h2>Shopping List</h2>
<table id="list"></table>
</div>
</form>
/*
//This step might not be required because most modern browsers do support HTML5.
*/
function CheckBrowser() {
return true;
} else {
return false;
function doShowAll() {
if (CheckBrowser()) {
var i = 0;
//For a more advanced feature, you can set a cap on max items in the cart.
+ localStorage.getItem(key) + "</td></tr>\n";
if (list == "<tr><th>Item</th><th>Value</th></tr>\n") {
list += "<tr><td><i>empty</i></td>\n<td><i>empty</i></td></tr>\n";
document.getElementById('list').innerHTML = list;
} else {
alert('Cannot save shopping list as your browser does not support HTML 5');
localStorage.myProperty="myValue";
localStorage.setItem('propertyName','value');
localStorage.getItem('propertyName');
localStorage.removeItem('propertyName');
localStorage.setItem('propertyName','value');
localStorage.getItem('propertyName');
localStorage.removeItem('propertyName');
function SaveItem() {
localStorage.setItem(name, data);
doShowAll();
}
function SaveItem() {
localStorage.setItem(name, data);
doShowAll();
function ModifyItem() {
if (localStorage.getItem(name1) !=null)
//update
localStorage.setItem(name1,data1);
document.forms.ShoppingList.data.value = localStorage.getItem(name1);
doShowAll();
function ModifyItem() {
if (localStorage.getItem(name1) !=null)
//update
localStorage.setItem(name1,data1);
var new_info=localStorage.getItem(name1);
$("#data").val(new_info);
doShowAll();
function RemoveItem()
var name=document.forms.ShoppingList.name.value;
document.forms.ShoppingList.data.value=localStorage.removeItem(name);
doShowAll();
function ClearAll() {
localStorage.clear();
doShowAll();
//Customer info
//Mailing info
var obj2 = { state: "VA", city: "Arlington" };
//Item info
//Use JSON parse function below to convert string back into object or array.
var New_cust=JSON.parse(cust);
Output
Skill Developed/Learning Outcome of this Micro-
Project:-
• Able to develop JavaScript to implement functions.
• Able to develop JavaScript to implemen Form events.
• Compose Relevent RegEx for given pattern search.
• protect webpage using JS.
Reference
Www.project worldsin.com
Www.upgrad.com
Www.code-project.com