Pentatonic Labs Final Documentation

Size: px
Start display at page:

Download "Pentatonic Labs Final Documentation"

Transcription

1 Pentatonic Labs Final Documentation Chelsea Reynolds, Eric Stirling, Tayler Albert, Kyle White, Tam Huynh 1

2 Table of Contents Site Hierarchy Home Home Display Default.aspx.cs Checkout.. 5 Checkout Display....5 Checkout.aspx.cs....6 About Us About Us Display... 6 AboutUs.aspx.cs Contact Us Contact Us Display..8 Contact.aspx.cs....9 Login Login Display Login.aspx.cs Products...12 Products Display Products.aspx.cs Register...14 Register Display..15 Register.aspx.cs Shopping Cart..16 Shopping Cart Display. 17 Cart.aspx.cs Welcome Welcome Display 一 Welcome.aspx.cs Entity Relational Diagram...25 Data Definitions Table SQL

3 Site Hierarchy Home Page About Us Products Registration My Cart Login Registration Successful Checkout Thank You! 3

4 Home Page: The home page will welcome the customers to our business and attract them. This page will provide an overview of the business. Default.aspx Data Collected: None Default.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebDevHeads_Default : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 4

5 Checkout.aspx 5

6 Checkout.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebDevHeads_Checkout : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) protected void btnpurchase_click(object sender, EventArgs e) ScriptManager.RegisterStartupScript(this.Page, this.page.gettype(), "err_msg", "alert('thank you for your order!');location.href=' true); Company Info The about us page is a static page that contains information about our company, our mission and detailed information of our purpose Design: The page will have different sections used to provide our company s detailed information including: Our founders History of our company Mission statement Purpose of our business CompanyInfo.aspx 6

7 Data Collected: No data will be collected on this page. CompanyInfo.aspx.cs 7

8 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebDevHeads_CompanyInfo : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) Contact Us Purpose: This page will help our customers and visitors contact us through if they have any questions regarding to our website. Design: This page will have a form where visitors or customers will fill out their name, valid address, phone number and comments/suggestions/feedback. After filling out the required information, the submit button must be clicked. Contact.aspx 8

9 Data collected: name, valid address, phone number, and comments/suggestions/feedback. Contact.aspx.cs 9

10 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebDevHeads_Contact : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) Login Purpose: Login page helps the visitors to sign into their accounts to access their page and account details. Design: The login page will have two textbox with username and password. When the user enters the following information, they can submit clicking the submit button box. If the customer is new or has not logged in yet, then it forwards the customer to the registration page. Data Displayed: Login.aspx 10

11 Data Collected: Customer s username and password will be collected here. Login.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; public partial class WebDevHeads_Documents_Login : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 11

12 protected void btnsubmit_click(object sender, EventArgs e) string UserID = ""; string Password = ""; SqlDataReader MyReader; SqlConnection myconnection = new SqlConnection(SqlDataSource1.ConnectionString); SqlCommand mycommand = new SqlCommand(SqlDataSource1.SelectCommand); mycommand.connection = myconnection; mycommand.parameters.addwithvalue("@password", txtpassword.text); mycommand.parameters.addwithvalue("@ ", txtusername.text); myconnection.open(); MyReader = mycommand.executereader(commandbehavior.closeconnection); while (MyReader.Read()) UserID = MyReader.GetString(2).Trim() + " " + MyReader.GetString(3).Trim(); Password = MyReader.GetString(1).Trim(); myconnection.close(); if (txtpassword.text == "") lblmessage.text = "Please enter you Login Information"; else if (txtpassword.text.trim() == Password) Session["UserName"] = UserID; Session["User "] = txtusername.text.trim(); Response.Redirect("welcome.aspx"); else lblmessage.text = "Incorrect User Name or Password "; protected void btnregister_click(object sender, EventArgs e) Response.Redirect("Registration.aspx"); Products Purpose: The purpose of this page is to let visitors know about our products and prices of our products. The page will also contain the cart button to add an item to the cart if needed. 12

13 Data Displayed/Design: Products.aspx 13

14 Data Collected : No data will be collected on this page. Products.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebDevHeads_Products : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 14

15 protected void btnaddtocart_click1(object sender, EventArgs e) ShoppingCart.Instance.AddItem(1); if (Session["UserName"]!= null) Response.Redirect("ShoppingCart.aspx"); else ScriptManager.RegisterStartupScript(this.Page, this.page.gettype(), "err_msg", "alert('oops! Looks like you haven't signed in yet.');location.href=' true); protected void btnaddtocart_click2(object sender, EventArgs e) ShoppingCart.Instance.AddItem(2); if (Session["UserName"]!= null) Response.Redirect("ShoppingCart.aspx"); else ScriptManager.RegisterStartupScript(this.Page, this.page.gettype(), "err_msg", "alert('oops! Looks like you haven't signed in yet.');location.href=' true); protected void btnaddtocart_click3(object sender, EventArgs e) ShoppingCart.Instance.AddItem(3); if (Session["UserName"]!= null) Response.Redirect("ShoppingCart.aspx"); else ScriptManager.RegisterStartupScript(this.Page, this.page.gettype(), "err_msg", "alert('oops! Looks like you haven't signed in yet.');location.href=' true); 15

16 Register Purpose: The purpose of this registration page is to allow new customers to register for the website so that their account details get saved. This makes it convenient for customers who visit the site frequently by not making them have to re-visit account details every time they want to pull up their account information or make a purchase. Design: The design of the registration page will have a textbox referring to the login page. In the registration page information, the user will input their name, address, phone number and year of birth. This will be saved into the database once the submit button is clicked. 16

17 Registration.aspx Data Collected: The user s name, address, phone number and year of birth will be collected in the database. Registration.aspx.cs using System; using System.Collections.Generic; 17

18 using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; public partial class WebDevHeads_Registration : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) protected void btnsubmit_click(object sender, EventArgs e) SqlConnection myconnection = new SqlConnection(SqlDataSource1.ConnectionString); SqlCommand mycommand = new SqlCommand(SqlDataSource1.InsertCommand); mycommand.connection = myconnection; mycommand.parameters.addwithvalue("@ ", txt .text); mycommand.parameters.addwithvalue("@password", txtpassword.text); mycommand.parameters.addwithvalue("@fname", txtfname.text); mycommand.parameters.addwithvalue("@lname", txtlname.text); mycommand.parameters.addwithvalue("@yob", txtyear.text); SqlDataReader myreader; myconnection.open(); myreader = mycommand.executereader(commandbehavior.closeconnection); myconnection.close(); Response.Redirect("Login.aspx"); Shopping Cart Purpose : This page is designed in order to let customers see the products that they have selected to add to their cart in order to make a purchase on our website. Design: All the products selected by the customer will be displayed on the left-hand side with a short description of the product. The price will be displayed next to the description of the product, and the 18

19 total amount will be displayed at the end of the page. This page gives a total view of the items inside of the cart. Customers can select the payment method on the next page by clicking the checkout button provided at the bottom of this page. ShoppingCart.aspx Data Collected: Products selected by the customer in order to make a purchase will be displayed on the page in chronological order as selected. ShoppingCart.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class Cart : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) if (!IsPostBack) BindData(); protected void BindData() 19

20 // Let s give the data to the GridView and let it work! // The GridView will take our cart items one by one and use the properties // that we declared as column names (DataFields) ShoppingCart cart = ShoppingCart.Instance; gvshoppingcart.datasource = cart.items; gvshoppingcart.databind(); protected void gvshoppingcart_rowdatabound(object sender, GridViewRowEventArgs e) // If we are binding the footer row, let's add in our total if (e.row.rowtype == DataControlRowType.Footer) ShoppingCart cart = ShoppingCart.Instance; e.row.cells[3].text = "Total: " + cart.getsubtotal().tostring("c"); /** * This is the method that responds to the Remove button's click event */ protected void gvshoppingcart_rowcommand(object sender, GridViewCommandEventArgs e) if (e.commandname == "Remove") int productid = Convert.ToInt32(e.CommandArgument); ShoppingCart cart = ShoppingCart.Instance; cart.removeitem(productid); // We now have to re-setup the data so that the GridView doesn't keep // displaying the old data BindData(); protected void btnupdatecart_click(object sender, EventArgs e) foreach (GridViewRow row in gvshoppingcart.rows) if (row.rowtype == DataControlRowType.DataRow) // We'll use a try catch block in case something other than a number is typed in // If so, we'll just ignore it. try // Get the productid from the GridView's datakeys int productid = Convert.ToInt32(gvShoppingCart.DataKeys[row.RowIndex].Value); // Find the quantity TextBox and retrieve the value int quantity = int.parse(((textbox)row.cells[1].findcontrol("txtquantity")).text); 20

21 ShoppingCart cart = ShoppingCart.Instance; cart.setitemquantity(productid, quantity); catch (FormatException) BindData(); protected void btncheckout_click(object sender, EventArgs e) Response.Redirect("Checkout.aspx"); Welcome: Purpose: This page is confirmation to the customer has successfully created an account or has successfully logged into their account. Design: This page will display a greeting to the customer after ligin. Welcome.aspx 21

22 Welcome.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebDevHeads_Welcome : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) if (Session["UserName"]!= null) lblmessage.text = "Hello " + Session["Username"].ToString(); lblmessage.visible = true; else Response.Redirect("Login.aspx"); 22

23 Entity relationship diagram: Data definitions Customer (User_ID, FirstName, LName, Address, City, State, Zip, Phone, ) Payment (Invoice_Id, User_ID, CC_Info, TotalAmount, ShippingInfo) Orders (Order_ID, User_ID, Status, TotalAmount) Product (Prod_Id, Prod_Name, Prod_Price, Prod_Weight) 23

24 Order CREATE TABLE [dbo].[order] ( [OrderID] VARCHAR (50) NOT NULL, [Status] VARCHAR (50) NULL, [Total_Amount] VARCHAR (50) NULL, PRIMARY KEY CLUSTERED ([OrderID] ASC) Table SQL CONSTRAINT [FK_Payment_ToTable] FOREIGN KEY ([UserID]) REFERENCES [dbo].[user] ([UserID]) ); 24

25 Payment CREATE TABLE [dbo].[payment] ( [InvoiceID] VARCHAR (50) NOT NULL, [CC_Info] VARCHAR (50) NULL, [ShippingInfo] VARCHAR(50) NULL, [UserID] VARCHAR (50) NULL, PRIMARY KEY CLUSTERED ([InvoiceID] ASC), CONSTRAINT [FK_Payment_ToTable] FOREIGN KEY ([UserID]) REFERENCES [dbo].[user] ([UserID]) ); Product CREATE TABLE [dbo].[product] ( [Prod_ID] VARCHAR (50) NOT NULL, [Prod_Name] VARCHAR (50) NULL, [Prod_Price] VARCHAR (50) NULL, [Prod_Weight] INTEGER (3) NULL, PRIMARY KEY CLUSTERED ([Prod_ID] ASC), CONSTRAINT [FK_Product_ToTable] FOREIGN KEY ([UserID]) REFERENCES [dbo].[user] ([UserID]), CONSTRAINT [FK_Product_ToTable_1] FOREIGN KEY ([OrderID]) REFERENCES [dbo].[order] ([OrderID]) ); Customer CREATE TABLE [dbo].[customer] ( [UserID] VARCHAR (50) NOT NULL, [F_Name] VARCHAR (50) NOT NULL, [L_Name] VARCHAR (50) NOT NULL, [Address] VARCHAR (50) NOT NULL, [City] VARCHAR (50) NOT NULL, [State] VARCHAR (2) NOT NULL, [Zip] INTEGER (10) NOT NULL, [Phone] INTEGER (11) NOT NULL, [Password] VARCHAR (50) NOT NULL, [ ] VARCHAR (50) NULL, 25

26 PRIMARY KEY CLUSTERED ([UserID] ASC) ); 26

Final Documentation. Created By: Ahnaf Salam Adam Castillo Sergio Montejano Elliot Galanter

Final Documentation. Created By: Ahnaf Salam Adam Castillo Sergio Montejano Elliot Galanter Final Documentation Created By: Ahnaf Salam Adam Castillo Sergio Montejano Elliot Galanter Table of Contents SITE HIERARCHY: 5 WEB.CONFIG CODE: 6 LOGIN CREDENTIALS 6 HOME PAGE: 7 Purpose: 7 Design: 7 Data

More information

Final Documentation Solutions Inc TEAM SOLUTION Micheal Scott Trevor Moore Aurian James Wes Bailoni

Final Documentation Solutions Inc TEAM SOLUTION Micheal Scott Trevor Moore Aurian James Wes Bailoni Final Documentation Solutions Inc. 12.5.2017 TEAM SOLUTION Micheal Scott Trevor Moore Aurian James Wes Bailoni 1 P a g e Table of Contents SITE HIERARCHY... 3 Email/Password... 4 Information... 5 Web.config...

More information

Blackbird Books and Supplies

Blackbird Books and Supplies Blackbird Books and Supplies Final Documentation Team Blackbird Mike Pratt Ridha Joudah Jayati Dandriyal Joseph Manga 1 Contents Site Hierarchy... 3 Home (Default Page)... 4 About... 6 Contact... 8 Login...

More information

GSU Alumni Portal. OPUS Open Portal to University Scholarship. Governors State University. Vemuri Vinusha Chowdary Governors State University

GSU Alumni Portal. OPUS Open Portal to University Scholarship. Governors State University. Vemuri Vinusha Chowdary Governors State University Governors State University OPUS Open Portal to University Scholarship All Capstone Projects Student Capstone Projects Fall 2015 GSU Alumni Portal Vemuri Vinusha Chowdary Governors State University Sairam

More information

Employee Attendance System module using ASP.NET (C#)

Employee Attendance System module using ASP.NET (C#) Employee Attendance System module using ASP.NET (C#) Home.aspx DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

More information

Activating AspxCodeGen 4.0

Activating AspxCodeGen 4.0 Activating AspxCodeGen 4.0 The first time you open AspxCodeGen 4 Professional Plus edition you will be presented with an activation form as shown in Figure 1. You will not be shown the activation form

More information

Test Plan. Online Music Store Version 1.0. Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering

Test Plan. Online Music Store Version 1.0. Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Test Plan Online Music Store Version 1.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Reshma Sawant CIS 895 MSE Project Kansas State University 1 TABLE

More information

3 Customer records. Chapter 3: Customer records 57

3 Customer records. Chapter 3: Customer records 57 Chapter 3: Customer records 57 3 Customer records In this program we will investigate how records in a database can be displayed on a web page, and how new records can be entered on a web page and uploaded

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

Web Forms User Security and Administration

Web Forms User Security and Administration Chapter 7 Web Forms User Security and Administration In this chapter: Administering an ASP.NET 2.0 Site...................................... 238 Provider Configuration................................................

More information

Insert Data into Table using C# Code

Insert Data into Table using C# Code Insert Data into Table using C# Code CREATE TABLE [registration]( [roll_no] [int] NULL, [name] [varchar](50), [class] [varchar](50), [sex] [varchar](50), [email] [varchar](50))

More information

Encrypt and Decrypt Username or Password stored in database in ASP.Net using C# and VB.Net

Encrypt and Decrypt Username or Password stored in database in ASP.Net using C# and VB.Net Encrypt and Decrypt Username or Password stored in database in ASP.Net using C# and VB.Net Here Mudassar Ahmed Khan has explained how to encrypt and store Username or Password in SQL Server Database Table

More information

ASP.NET Security. 7/26/2017 EC512 Prof. Skinner 1

ASP.NET Security. 7/26/2017 EC512 Prof. Skinner 1 ASP.NET Security 7/26/2017 EC512 Prof. Skinner 1 ASP.NET Security Architecture 7/26/2017 EC512 Prof. Skinner 2 Security Types IIS security Not ASP.NET specific Requires Windows accounts (NTFS file system)

More information

Mainly three tables namely Teacher, Student and Class for small database of a school. are used. The snapshots of all three tables are shown below.

Mainly three tables namely Teacher, Student and Class for small database of a school. are used. The snapshots of all three tables are shown below. APPENDIX 1 TABLE DETAILS Mainly three tables namely Teacher, Student and Class for small database of a school are used. The snapshots of all three tables are shown below. Details of Class table are shown

More information

Unit-3 State Management in ASP.NET

Unit-3 State Management in ASP.NET STATE MANAGEMENT Web is Stateless. It means a new instance of the web page class is re-created each time the page is posted to the server. As we all know HTTP is a stateless protocol, it s can't holds

More information

Creating a new customer account and entering a new order on IDT website

Creating a new customer account and entering a new order on IDT website Creating a new customer account and entering a new order on IDT website Welcome to the Home Page of IDT s website. Click on SIGN IN in order to enter into your account (or create a new account now). If

More information

How to create a simple ASP.NET page to create/search data on baan using baan logic from the BOBS client sample.

How to create a simple ASP.NET page to create/search data on baan using baan logic from the BOBS client sample. How to create a simple ASP.NET page to create/search data on baan using baan logic from the BOBS client sample. Author: Carlos Kassab Date: July/24/2006 First install BOBS(BaaN Ole Broker Server), you

More information

BUSINESS CARDS. WHEN ORDERING, REFERENCE BID # on your requisition. Example: Qty of Business Cards for John Runnels

BUSINESS CARDS. WHEN ORDERING, REFERENCE BID # on your requisition. Example: Qty of Business Cards for John Runnels BUSINESS CARDS Awarded Vendor: Thermcraft MUNIS VENDOR NUMBER: 9754 WHEN ORDERING, REFERENCE BID #007-16 on your requisition. Enter your requisition to the vendor listed above. In your description field

More information

Guidebook ONLINE ORDERING MADE EASY!

Guidebook ONLINE ORDERING MADE EASY! www.boltsupply.com Guidebook ONLINE ORDERING MADE EASY! ONLINE ORDERING MADE EASY! www.boltsupply.com Guidebook Here are some of the highlights of the new boltsupply.com New Home Page It s now easier than

More information

70-561CSHARP. TS: MS.NET Framework 3.5, ADO.NET Application Development. Exam.

70-561CSHARP. TS: MS.NET Framework 3.5, ADO.NET Application Development. Exam. Microsoft 70-561CSHARP TS: MS.NET Framework 3.5, ADO.NET Application Development Exam TYPE: DEMO http://www.examskey.com/70-561csharp.html Examskey Microsoft70-561CSHARP exam demo product is here for you

More information

In the previous chapter we created a web site with images programmed into HTML page code using commands such as: <img src="images/train.

In the previous chapter we created a web site with images programmed into HTML page code using commands such as: <img src=images/train. Chapter 6: Mountain Bike Club 113 6 Mountain Bike Club In the previous chapter we created a web site with images programmed into HTML page code using commands such as: In

More information

if (say==0) { k.commandtext = "Insert into kullanici(k_adi,sifre) values('" + textbox3.text + "','" + textbox4.text + "')"; k.

if (say==0) { k.commandtext = Insert into kullanici(k_adi,sifre) values(' + textbox3.text + ',' + textbox4.text + '); k. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient;

More information

Ordering Instructions for Marketing-on-Demand Website

Ordering Instructions for Marketing-on-Demand Website Ordering Instructions for Marketing-on-Demand Website 1. Login Go to http://www.stargas.consumergraphics.net to login to the website. Your Username and Password will be given to you by your RSM. 2. Home

More information

MOSS2007 Write your own custom authentication provider (Part 4)

MOSS2007 Write your own custom authentication provider (Part 4) MOSS2007 Write your own custom authentication provider (Part 4) So in the last few posts we have created a member and role provider and configured MOSS2007 to use this for authentication. Now we will create

More information

Murphy s Magic Download API

Murphy s Magic Download API Murphy s Magic Download API Last updated: 3rd January 2014 Introduction By fully integrating your website with the Murphy s Magic Download System, you can give the impression that the downloads are fully

More information

STEP 1: CREATING THE DATABASE

STEP 1: CREATING THE DATABASE Date: 18/02/2013 Procedure: Creating a simple registration form in ASP.NET (Programming) Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 CREATING A SIMPLE REGISTRATION FORM

More information

8 Library loan system

8 Library loan system Chapter 8: Library loan system 153 8 Library loan system In previous programs in this book, we have taken a traditional procedural approach in transferring data directly between web pages and the ASP database.

More information

Kaotii.

Kaotii. Kaotii IT http://www.kaotii.com Exam : 70-762 Title : Developing SQL Databases Version : DEMO 1 / 10 1.DRAG DROP Note: This question is part of a series of questions that use the same scenario. For your

More information

3-tier Architecture Step by step Exercises Hans-Petter Halvorsen

3-tier Architecture Step by step Exercises Hans-Petter Halvorsen https://www.halvorsen.blog 3-tier Architecture Step by step Exercises Hans-Petter Halvorsen Software Architecture 3-Tier: A way to structure your code into logical parts. Different devices or software

More information

E-Commerce Web Application

E-Commerce Web Application E-Commerce Web Application Documentation Jonathan Ellis Summary and Requirements DigitalX is a shop for music, movies, and video games in Auckland. The old website of DigitalX was developed using PHP and

More information

The Workwear Group Online Ordering Manual. Ozcare employees

The Workwear Group Online Ordering Manual. Ozcare employees The Workwear Group Online Ordering Manual Ozcare employees Welcome to The Workwear Group online at http://www.pbworkwearonline.com.au This site provides you with everything you need to manage your uniform

More information

Arena: Edit External Web Templates (Course #A217)

Arena: Edit External Web Templates (Course #A217) Arena: Edit External Web Templates (Course #A217) Presented by: Alex Nicoletti Arena Product Owner 2017 Shelby Systems, Inc. Other brand and product names are trademarks or registered trademarks of the

More information

Online Ordering Instructions

Online Ordering Instructions Online Ordering Instructions Supplied By Table of Contents Login... 2 How to Order Products... 2 Shopping Cart... 3 Checkout... 3 My Account... 7 Login Type www.alliancepromotions.com.au in your preferred

More information

Datalogging and Monitoring

Datalogging and Monitoring Datalogging and Monitoring with Step by Step Examples Hans-Petter Halvorsen http://www.halvorsen.blog Content Different Apps for Data Logging and Data Monitoring will be presented Here you find lots of

More information

etrakit User Manual City of Oceanside A guide for using the online permitting system, etrakit

etrakit User Manual City of Oceanside A guide for using the online permitting system, etrakit City of Oceanside A guide for using the online permitting system, etrakit City of Oceanside, 300 N Coast Hwy, Oceanside CA 92054 Planning: 760 435 3520 Building: 760 435 3950 Engineering: 760 435 5097

More information

easypurchase Magellan User Reference Guide

easypurchase Magellan User Reference Guide 1 easypurchase Magellan User Reference Guide v1.12.13 Table of Contents Getting Started... 3 Initiating your Account... 3 Logging In... 3 Shop... 4 Creating an Order... 4 Hosted Catalogs... 4 Punchout

More information

Project Design T-Shirt Sale Website University of British Columbia Okanagan. COSC Fall 2017

Project Design T-Shirt Sale Website University of British Columbia Okanagan. COSC Fall 2017 Project Design T-Shirt Sale Website University of British Columbia Okanagan COSC 304 - Fall 2017 Version 2.0 Date: 10/28/2017 Table of Contents Table of Contents 1 Project Team/Contacts: 1 Introduction:

More information

Tutorial #2: Adding Hyperlinks to ASP.NET

Tutorial #2: Adding Hyperlinks to ASP.NET Tutorial #2: Adding Hyperlinks to ASP.NET In the first tutorial you learned how to get data from a database to an ASP.NET page using data source controls. When displayed in a browser, your page looks like

More information

Open 24/7/365. Welcome to DOIGCorp.com. Welcome to the new DOIGCorp.com

Open 24/7/365. Welcome to DOIGCorp.com. Welcome to the new DOIGCorp.com Welcome to DOIGCorp.com Welcome to the new DOIGCorp.com We are Factory and Industrial Automation Specialists, working to bring our customers Fast. Friendly. Flawless. Solutions. Open 24/7/365 We ve made

More information

Online Permit Manager User Manual

Online Permit Manager User Manual City of Westminster Community Development Department Online Permit Manager User Manual A guide for using the online permitting system, etrakit City of Westminster Community Development Department 4800

More information

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 2

Department of Computer Science University of Cyprus. EPL342 Databases. Lab 2 Department of Computer Science University of Cyprus EPL342 Databases Lab 2 ER Modeling (Entities) in DDS Lite & Conceptual Modeling in SQL Server 2008 Panayiotis Andreou http://www.cs.ucy.ac.cy/courses/epl342

More information

Quick Shopper Online Store KB P M P D P D

Quick Shopper Online Store KB P M P D P D Quick Shopper Online Store KB P M P D P D System Specification 1.0 Introduction 1.1 Goals and Objectives Quick Shopper is software that allows people to do their shopping over the Internet. Customers are

More information

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link. How to Order a Four Panel Brochure through Print Services Go to the Print Services Web Page and select the Online Store link. 1 Enter your Username and Password on the Print Services Online Ordering home

More information

SEGPAY WooCommerce Plugin SETUP

SEGPAY WooCommerce Plugin SETUP SEGPAY WooCommerce Plugin SETUP Client Documentation Version 1.1 May 11, 2017 Table of Contents Version Tracking... 3 Summary... 4 Pre-Installation Checklist... 4 Plugin Installation... 5 Testing... 9

More information

How Do I Register for a Fielden Institute Course?

How Do I Register for a Fielden Institute Course? How Do I Register for a Fielden Institute Course? This lesson will show you how to use our registration software. 1) Make sure you are on our registration site at: https://irsclifelonglearning.gosignmeup.com

More information

1 Copyright FATbit Technologies. All Rights Reserved.

1 Copyright FATbit Technologies. All Rights Reserved. Contents 1.0 Affiliate Module... 2 1.1 Registration... 3 2.0 Sharing... 5 3.0 Profile... 5 3.1 My Account... 6 3.1.1 My Account... 6 3.1.2 Payment Information... 8 3.2 My Credits... 9 3.3 Change Password...

More information

A Project Report On E-Watch Shopping System

A Project Report On E-Watch Shopping System A Project Report On E-Watch Shopping System Submitted By Patel Jigisha M Patel Payal V. Group No: 50 M.Sc. (CA & IT) Semester-III Guided By Mrs.Komal.H.Patel Submitted to Department

More information

This PDF was generated in real-time using DynamicPDF; Generator for.net.

This PDF was generated in real-time using DynamicPDF; Generator for.net. MailingLabels.aspx 1 1 using System; 2 using System.Data; 3 using System.Data.SqlClient;

More information

ADO.NET for Beginners

ADO.NET for Beginners Accessing Database ADO.NET for Beginners Accessing database using ADO.NET in C# or VB.NET This tutorial will teach you Database concepts and ADO.NET in a very simple and easy-to-understand manner with

More information

Center for Science Outreach Public View

Center for Science Outreach Public View Vanderbilt University Center for Science Outreach Public View Destiny One Page 1 Contents Create a Student Profile/Account... 3 Browse for a Course... 5 Register for a Course and Checkout... 7 Page 2 Create

More information

New BoundTree.com User Guide Fall Version 6

New BoundTree.com User Guide Fall Version 6 New BoundTree.com User Guide Fall 2016 Version 6 Table of Contents Overview Navigating the Home Page Creating an Account Logging into an Existing Account Forgot Your Password? Reviewing Your Account Editing

More information

Step-by-step Guide ASIL Online and On-Demand CLE Platform

Step-by-step Guide ASIL Online and On-Demand CLE Platform Step-by-step Guide ASIL Online and On-Demand CLE Platform Step 1: Sign in to your ASIL account (www.asil.org) If you do not currently have an account on the ASIL website, you can create one when you follow

More information

How to Place a Catering Order. Step by Step Guide

How to Place a Catering Order. Step by Step Guide How to Place a Catering Order Step by Step Guide Creating an Account NOTE: Log in emails and passwords are case sensitive Click here to create a new account Entering in Your Required Information Type in

More information

Introduction. Three button technique. "Dynamic Data Grouping" using MS Reporting Services Asif Sayed

Introduction. Three button technique. Dynamic Data Grouping using MS Reporting Services Asif Sayed Image: 1.0 Introduction We hear this all the time, Two birds with one stone. What if I say, Four birds with one stone? I am sure four sound much better then two. So, what are my four birds and one stone?

More information

Oracle Academy Amazing Books Part 1: Building Tables and Adding Constraints

Oracle Academy Amazing Books Part 1: Building Tables and Adding Constraints Oracle Academy Amazing Books In this section, you use the Object Browser in Oracle Application Express to: Build the base tables for the project Add foreign key constraints Be sure to have a copy of the

More information

WEBSITE TRAINING GUIDE MY OFFICE PRODUCTS. Office Supplies & Business Print

WEBSITE TRAINING GUIDE MY OFFICE PRODUCTS. Office Supplies & Business Print WEBSITE TRAINING GUIDE MY OFFICE PRODUCTS Office Supplies & Business Print Table of Contents Log In... 2 Updating My User Information... 4 Creating Favorites List... 6 Viewing Saved Carts... 9 Creating

More information

The Open Core Interface SDK has to be installed on your development computer. The SDK can be downloaded at:

The Open Core Interface SDK has to be installed on your development computer. The SDK can be downloaded at: This document describes how to create a simple Windows Forms Application using some Open Core Interface functions in C# with Microsoft Visual Studio Express 2013. 1 Preconditions The Open Core Interface

More information

Cat ARCTIC CAT Dealer & Distributor Network

Cat ARCTIC CAT Dealer & Distributor Network Cat ARCTIC CAT Dealer & Distributor Network TUTORIAL Part 01 Content: Shop / Parts Ordering Service & Support Cat TUTORIAL Welcome to the Arctic Cat Europe Dealer online platform called Cat. This network

More information

Where Are We? Next Few Lectures. Integrity Constraints Motivation. Constraints in E/R Diagrams. Keys in E/R Diagrams

Where Are We? Next Few Lectures. Integrity Constraints Motivation. Constraints in E/R Diagrams. Keys in E/R Diagrams Where Are We? Introduction to Data Management CSE 344 Lecture 15: Constraints We know quite a bit about using a DBMS Start with real-world problem, design ER diagram From ER diagram to relations -> conceptual

More information

Object oriented lab /second year / review/lecturer: yasmin maki

Object oriented lab /second year / review/lecturer: yasmin maki 1) Examples of method (function): Note: the declaration of any method is : method name ( parameters list ).. Method body.. Access modifier : public,protected, private. Return

More information

How to design a database

How to design a database Chapter 16 How to design a database A database system is modeled after a real-word system 2017, Mike Murach & Associates, Inc. C 16, Slide 1 2017, Mike Murach & Associates, Inc. C 16, Slide 4 Objectives

More information

Vision Document. Online E-commerce Music CD Store Version 2.0

Vision Document. Online E-commerce Music CD Store Version 2.0 Vision Document Online E-commerce Music CD Store Version 2.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Reshma Sawant CIS 895 MSE Project Kansas State

More information

How to obtain log-in Information. How to log-in to FNB Online Catalog

How to obtain log-in Information. How to log-in to FNB Online Catalog Table of Contents 1. How to obtain log-in information and log-in pg. 2 2. Start your order pg. 3 3. Choose product details, confirm and check-out pg. 4 4. Select Purchase Type: Affiliate or Personal pg.

More information

First-time users select Register here

First-time users select Register here First-time users select Register here Type the first letter of your district name and select the appropriate district or entity. Enter your DISTRICT EMAIL ADDRESS (email addresses must match the @districtname.kyschools.us

More information

Real4Test. Real IT Certification Exam Study materials/braindumps

Real4Test.   Real IT Certification Exam Study materials/braindumps Real4Test http://www.real4test.com Real IT Certification Exam Study materials/braindumps Exam : 70-561-Csharp Title : TS:MS.NET Framework 3.5,ADO.NET Application Development Vendors : Microsoft Version

More information

Lab 4 (Introduction to C# and windows Form Applications)

Lab 4 (Introduction to C# and windows Form Applications) Lab 4 (Introduction to C# and windows Form Applications) In this the following goals will be achieved: 1. C# programming language is introduced 2. Creating C# console application using visual studio 2008

More information

C# winforms gridview

C# winforms gridview C# winforms gridview using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;

More information

School Specialty New Release Manual

School Specialty New Release Manual School Specialty New Release Manual Version 11.1 Table of Contents: Registration Entering Orders Search Options Search by Catalog Number Search by Keyword Digital Catalogs Upload File Add to Shopping List

More information

HOW TO REGISTER FOR THE TEAS ASSESSMENT

HOW TO REGISTER FOR THE TEAS ASSESSMENT How to Register for the TEAS Assessment 1 HOW TO REGISTER FOR THE TEAS ASSESSMENT You can now register for the TEAS Assessment through our Online Store. How you access the Online Store depends on whether

More information

User Manual. Online E-commerce Music Store Version 1.0

User Manual. Online E-commerce Music Store Version 1.0 User Manual Online E-commerce Music Store Version 1.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Reshma Sawant CIS 895 MSE Project Kansas State University

More information

Fname A variable character field up to 15 characters in length. Must have a value Lname A variable character field up to 15

Fname A variable character field up to 15 characters in length. Must have a value Lname A variable character field up to 15 Customer Table CUSTOMER (CustomerNo, fname, lname, phone) CustomerNo Primary key, numeric, 4 digits Fname A variable character field up to 15 characters in length. Must have a value Lname A variable character

More information

User Sign In Page. New User Page. Click My Account on top or bottom toolbars.

User Sign In Page. New User Page. Click My Account on top or bottom toolbars. New User Instructions URL: www.costore.com/chemicalbank or www.chemicalbankstore.com Home Page For assistance please contact JMA Promotions- Amy Rush at 1-800-431-1101 or email arush@jmapromotions.com

More information

Welcome to Converge! Online Ordering User Guide Page 1

Welcome to Converge! Online Ordering User Guide Page 1 Welcome to Converge! Online Ordering User Guide Page 1 First Time Users Our fastest registration to date! Simply enter your Email Address, First and Last Name. You will be sent an email which contains

More information

Help Guide Service Readiness Management

Help Guide Service Readiness Management Help Guide Service Readiness Management (27-11-12) Page 1 Table of Contents SRM Help Guide... 4 Login... 4 Create New Account / Register... 5 Starting Page / Self Audit... 6 Identify Tools... 7 Summary...

More information

NHD Online Registration Guide: Teacher

NHD Online Registration Guide: Teacher NHD Online Registration Guide: Teacher Introduction Welcome to the National History Day Contest Management system. Within this guide, you will see a description of key terms within the contest system along

More information

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th

CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th CSC4370/6370 Spring/2010 Project 1 Weight: 40% of the final grade for undergraduates, 20% for graduates. Due: May/8th Note: This project is done by two people team or individual. This project must be completed

More information

Welcome to etrakit for Electrical Contractors. If you are a new user, please request a personal identification number (PIN) to set up your account

Welcome to etrakit for Electrical Contractors. If you are a new user, please request a personal identification number (PIN) to set up your account Welcome to etrakit for Electrical Contractors If you are a new user, please request a personal identification number (PIN) to set up your account Send an email to dli.etrakit@state.mn.us Include in your

More information

COPYRIGHTED MATERIAL. Index. Symbols. Index

COPYRIGHTED MATERIAL. Index. Symbols. Index Index Index Symbols @ (at) symbol, 138 @Page directive, 56 /* */ (forward slash plus asterisk) symbol, 102 103 ~ (tilde) symbol, 56 _ (underscore) symbol, 258 A abstractions (object-oriented programming),

More information

MAJOR PROJECT ON ONLINE SHOPPING SYSTEM

MAJOR PROJECT ON ONLINE SHOPPING SYSTEM This project is a web based shopping system for an existing shop. The project objective is to deliver the online shopping application into PHP platform. MAJOR PROJECT ON Avick Naha 1 DINABANDHU ANDREWS

More information

Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

Page Language=C# AutoEventWireup=true CodeFile=Default.aspx.cs Inherits=_Default %> در این مقاله قصد داریم با استفاده از Ajax کاربر یک پیام را بدون الگین شدن و با استفاده از IP بتواند الیک و یا دیس الیک کند را در ASPآموزش دهیم. برای شروع یک بانک اطالعاتی به نام Test که حاوی دو جدول به

More information

CSIS 1624 CLASS TEST 6

CSIS 1624 CLASS TEST 6 CSIS 1624 CLASS TEST 6 Instructions: Use visual studio 2012/2013 Make sure your work is saved correctly Submit your work as instructed by the demmies. This is an open-book test. You may consult the printed

More information

PWLL Online Registration

PWLL Online Registration Introduction PWLL Online Registration The Prince William Lassie League provides a fast and easy way for you to register your players for the league online registration! This has several benefits: 1. Reduction

More information

Thank you for your registration to the Healthcare Logistics Vaccine Ordering Website.

Thank you for your registration to the Healthcare Logistics Vaccine Ordering Website. Page 1 of 18 Thank you for your registration to the Vaccine Ordering Website. Please read this How To manual before using the website. To activate your account please go to www.hcl.co.nz New User Select

More information

QSCU Merchandise Store

QSCU Merchandise Store QSCU Merchandise Store Document Status: Final Report November 30th 2018 COSC 304 Team Members: Removed Table Of Contents 1. Introduction 2 1.1 Mission Statement 2 1.2 Purpose of Document 2 1.3 Executive

More information

Standard User Site Registration Account Options Customer Hot List Creation & Utilization.

Standard User Site Registration Account Options Customer Hot List Creation & Utilization. Standard User Site Registration Account Options Customer Hot List Creation & Utilization www.gosafe.com gosafe.com User Instructions This document details the process for registering with gosafe.com, options

More information

MD Helicopters, Inc. On-line Publications Ordering Applications Guide

MD Helicopters, Inc. On-line Publications Ordering Applications Guide MD Helicopters, Inc. On-line Publications Ordering Applications Guide Welcome. This guide is provided to assist you in placing orders for Technical Publications using the new On-line Publications Order

More information

Creating the Product Catalog: Part II

Creating the Product Catalog: Part II Creating the Product Catalog: Part II Instructor: Wei Ding The lecture notes are written based on the book Beginning ASP.NET 2.0 E-Commerce in C# 2005 From Novice to Profession by Cristian Darie and Karli

More information

Teacher s Reference Manual

Teacher s Reference Manual UNIVERSITY OF MUMBAI Teacher s Reference Manual Subject: Advanced Web Programming with effect from the academic year 2018 2019 Practical 3(b).Demonstrate the use of Calendar control to perform following

More information

Selecting your dates for your City Lights season pass

Selecting your dates for your City Lights season pass Selecting your dates for your City Lights 2015-16 season pass 2015-16 ticketing can be accessed from this URL: http://cltc.org/tickets/ Clicking on the link above (or typing it into your web browser) will

More information

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central

eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central eshop Installation and Data Setup Guide for Microsoft Dynamics 365 Business Central Table of Contents Installation Guide... 3 eshop Account Registration in Dynamics 365 Business Central:... 3 eshop Setup

More information

Advanced Programming C# Lecture 5. dr inż. Małgorzata Janik

Advanced Programming C# Lecture 5. dr inż. Małgorzata Janik Advanced Programming C# Lecture 5 dr inż. malgorzata.janik@pw.edu.pl Today you will need: Classes #6: Project I 10 min presentation / project Presentation must include: Idea, description & specification

More information

Event Tickets Magento Extension User Guide Official extension page: Event Tickets

Event Tickets Magento Extension User Guide Official extension page: Event Tickets Event Tickets Magento Extension User Guide Official extension page: Event Tickets Page 1 Table of contents: 1. Event Creation........3 2. Ticket creation settings......6 3. Custom registration fields creation...8

More information

Content Manager User Guide

Content Manager User Guide Content Manager User Guide Read these guide to learn how to use Content Manager to browse, buy, download and install updates and extra contents to your Becker PND. 1.) How to install Content Manager Installation

More information

JOB AID Submitting a Change Order Form Request

JOB AID Submitting a Change Order Form Request Change Requests: The Change Order Form Request is to be used when you need to make a change on a Purchase Order (PO) that has already been sent to the supplier. Prior to pulling up this form, you will

More information

University of British Columbia Okanagan. COSC Project Design

University of British Columbia Okanagan. COSC Project Design University of British Columbia Okanagan COSC 304 - Project Design Names Removed Submitted: Dec 02, 2018 1 CONTENTS: 1. Introduction 2 1.1. Purpose.................................................... 2

More information

OLLI Online Registration Training

OLLI Online Registration Training OLLI Online Registration Training 1 Locating New OLLI at UK Online Registration Website There are two ways to find the OLLI at UK new online registration website: 1. Type the web address directly into

More information

ASP.NET - MULTI THREADING

ASP.NET - MULTI THREADING ASP.NET - MULTI THREADING http://www.tutorialspoint.com/asp.net/asp.net_multi_threading.htm Copyright tutorialspoint.com A thread is defined as the execution path of a program. Each thread defines a unique

More information

KPC Vendor Guide. Kentucky Purchasing Cooperatives 904 Rose Road Ashland, KY KPC Vendor Response Guide February 2010

KPC Vendor Guide. Kentucky Purchasing Cooperatives 904 Rose Road Ashland, KY KPC Vendor Response Guide February 2010 KPC Vendor Guide February 2010 i GRREC, KEDC, NKCES, SESC, WKEC KPC has implemented an electronic purchasing and sourcing solution. KPC uses ESM eschoolmall There are no eschoolmall Fees ASSESSED ON KPC

More information

Creating the Product Catalog: Part II

Creating the Product Catalog: Part II A Database-Backed Web Site Creating the Product Catalog: Part II Instructor: Wei Ding The lecture notes are written based on the book Beginning ASP.NET 20EC 2.0 E-Commerce in C# 2005 From Novice to Profession

More information

Step 1: Register as a New User

Step 1: Register as a New User Login Page A link is provided on this page allowing new users to register. Step 1: Register as a New User Returning Users can simply enter their Email Address and Password to enter the site. If you are

More information