Blackbird Books and Supplies

Size: px
Start display at page:

Download "Blackbird Books and Supplies"

Transcription

1 Blackbird Books and Supplies Final Documentation Team Blackbird Mike Pratt Ridha Joudah Jayati Dandriyal Joseph Manga 1

2 Contents Site Hierarchy... 3 Home (Default Page)... 4 About... 6 Contact... 8 Login Registration Account Coming Soon Books (ITDS Books) Supplies Custom Bundle Exchange Shopping Cart Check Out Entity Relationship Diagram (ERD)

3 Site Hierarchy 3

4 Home (Default Page) Purpose: This page will serve as our landing page and will provide visitors information about our featured products. Visitors can view and buy different products like textbooks, school supplies and bundles and get started. Design: 4

5 Data Collected: No data will be collected. Data Displayed: Featured products. 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 _Default : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 5

6 About Purpose: This page gives an introduction and insight as to who we are and describe Blackbird s goals, objectives and vision. Design: Data Collected: No data will be collected. Data Displayed: Mission statement, About the company. 6

7 About.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 About : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 7

8 Contact Purpose: This page will offer our contact information by which users/ buyers can reach out to us for concerns and support. We are happy to answer any question that our customer may have. Design: Data Collected: No data will be collected. Data Displayed: Contact information. 8

9 Contact.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 Contact : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 9

10 Login Purpose: Allows users to log in to their account. Design: Data Displayed: No data will be displayed. Data Collected: Username and Password. 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.Web.Security; using System.Data; using System.Data.SqlClient; public partial class Login : Page 10

11 protected void btnlogin_click(object sender, EventArgs e) string UserID = ""; string Password = ""; string CustID = "" ; 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(); CustID = Convert.ToString(MyReader.GetInt32(0)); myconnection.close(); if (txtpassword.text == "") lblmessage.visible = true; lblmessage.text = "Please enter you Login Information"; else if (txtpassword.text.trim() == Password) Session["UserName"] = UserID; Session[" "] = txtusername.text.trim(); Session["CustID"] = CustID; Response.Redirect("Account.aspx"); else //lblmessagee.text = "Incorrect User Name or Password "; protected void btnregister_click(object sender, EventArgs e) Response.Redirect("Registration.aspx"); 11

12 Registration Purpose: Allows customer to create an account on the website for purchasing products. Design: 12

13 Data Collected: First Name, Last Name, , Password, Confirm Password, Date of Birth, Phone, Street Address, City, State, Zip Code. Data Displayed: No data will be displayed. Registration.aspx.cs using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class Registration : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 13

14 protected Boolean ValidateForm() if (rfvfname.isvalid == false) return false; if (rfvlname.isvalid == false) return false; if (rfvphone.isvalid == false) return false; if (rfv .isvalid == false) return false; if (rfvdob.isvalid == false) return false; if (rfvaddress.isvalid == false) return false; if (rfvcity.isvalid == false) return false; if (rfvstate.isvalid == false) return false; if (rfvzip.isvalid == false) 14

15 return false; return true; protected void Register(object sender, EventArgs e) if (!ValidateForm()) return; SqlConnection myconnection = new SqlConnection(SqlDataSource2.ConnectionString); SqlCommand mycommand = new SqlCommand(SqlDataSource2.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("@streetaddr", txtaddress.text); mycommand.parameters.addwithvalue("@phone", txtphone.text); mycommand.parameters.addwithvalue("@city", txtcity.text); mycommand.parameters.addwithvalue("@state", txtstate.text); mycommand.parameters.addwithvalue("@zipcode", txtzipcode.text); mycommand.parameters.addwithvalue("@dob", txtdob.text); SqlDataReader myreader; myconnection.open(); myreader = mycommand.executereader(commandbehavior.closeconnection); myconnection.close(); Response.Redirect("Login.aspx"); 15

16 Account Purpose: This page will display the basic profile information of a user who has registered with Blackbird. User can update their information on this page. Design: Data Collected: Data gathered from user profile after login. Data Displayed: All user information, name user account, , and address. Account.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 Account : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 16

17 if(session["username"]!=null) lblusername.text = Session["UserName"].ToString() + " "; 17

18 Coming Soon Purpose: This page tells user/ buyer that Blackbird is working on providing more customized bundles and book/supplies buying options. Design: Data Collected: No data collected. Data Displayed: Info on what products we will be adding to our offerings. 18

19 ComingSoon.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 ComingSoon : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 19

20 Books (ITDS Books) Purpose: Display list of books offered by our website. Design: 20

21 Data Collected: Whether or not user put item in shopping cart. Data Displayed: Different books and their descriptions. ITDSBooks.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 ITDSBooks : BasePage protected void Page_Load(object sender, EventArgs e) protected void btnwebsystembuy_click(object sender, EventArgs e) BuyItem(lblTitle1.Text, lblid1.text, lblcost1.text, txtquantity1.text); Response.Redirect(" protected void btndatavisbuy_click(object sender, EventArgs e) BuyItem(lblTitle2.Text, lblid2.text, lblcost2.text, txtquantity2.text); Response.Redirect("ShoppingCart.aspx"); protected void btnmicrosoftaccessbuy_click(object sender, EventArgs e) BuyItem(lblTitle3.Text, lblid3.text, lblcost3.text, txtquantity3.text); Response.Redirect("ShoppingCart.aspx"); 21

22 Supplies Purpose: Display list of school supplies offered. Design: Data Collected: Whether or not user put item in shopping cart. Data Displayed: School office supplies. Supplies.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 Supplies : BasePage protected void Buy(object sender, EventArgs e) Response.Redirect("ShoppingCart.aspx"); 22

23 protected void btnberaser_click(object sender, EventArgs e) BuyItem(lblEraser.Text, lblid1.text, lblcost1.text,txtquantity1.text); Response.Redirect(" protected void btnbcalculator_click(object sender, EventArgs e) BuyItem(lblCalculator.Text, lblid2.text, lblcost2.text, txtquantity2.text); Response.Redirect(" protected void btnbbinder_click(object sender, EventArgs e) BuyItem(lblBinder.Text, lblid3.text, lblcost3.text, txtquantity3.text); Response.Redirect(" protected void btnbclips_click(object sender, EventArgs e) BuyItem(lblClips.Text, lblid4.text, lblcost4.text, txtquantity4.text); Response.Redirect(" 23

24 Custom Bundle Purpose: offer custom made book/supplies bundles tailored by class. Design: 24

25 Data Collected: No data is collected. Data Displayed: Items included in bundle. Bundle.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 BundleUsed : BasePage protected void Page_Load(object sender, EventArgs e) protected void btnbundlenew_click(object sender, EventArgs e) BuyItem(lblTitle1.Text, lblid1.text, lblcost1.text, txtquantity1.text); Response.Redirect(" protected void btndatavisbuy_click(object sender, EventArgs e) BuyItem(lblTitle2.Text, lblid2.text, lblcost2.text, txtquantity2.text); Response.Redirect(" 25

26 Exchange Purpose: Get information about book to post on exchange site, link to exchange site. Design: Data Collected: Item name, Quantity, Description, Condition. Data Displayed: Navigates to an external book exchange website. Exchange.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 Exchange : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 26

27 Shopping Cart Purpose: Store items you have selected for purchase. Design: Data Collected: Customer information and payment details. Data Displayed: Selected items from website. 27

28 ShoppingCart.aspx.cs using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class ShoppingCart : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) int UpdatedOrderID; if (Session["UserName"] == null) Response.Redirect(" else if (Session["ItemName"] == null) Response.Redirect(" else txtcustid.text = Session[" "].ToString(); txtpurchitem.text = Session["ItemName"].ToString(); lblprice.text = Session["ItemPrice"].ToString(); txtquantity.text = Session["ItemQuantity"].ToString(); lblitemid.text = Session["ItemID"].ToString(); lblcustid.text = Session["CustID"].ToString(); SqlDataReader myreader = default(sqldatareader); SqlCommand mycommand = new SqlCommand(SqlDataSource1.SelectCommand); SqlConnection myconnection = new SqlConnection(SqlDataSource1.ConnectionString); mycommand.connection = myconnection; myconnection.open(); string Query = null; Query = "SELECT MAX(OrderID) FROM [dbo].[order]"; mycommand.commandtext = Query; 28

29 myreader = mycommand.executereader(commandbehavior.closeconnection); while (myreader.read()) lblorderid.text = myreader.getint32(0).tostring(); UpdatedOrderID = Convert.ToInt32(lblOrderID.Text) + 1; lblorderid.text = Convert.ToString(UpdatedOrderID); // if(!validateform()) // // return; // protected Boolean ValidateForm() if (rfvpurch.isvalid == false) return false; if (rfvquantity.isvalid == false) return false; if (rfvcreditcard.isvalid == false) return false; if (rfvcardname.isvalid == false) return false; if (rfvcardnumber.isvalid == false) return false; 29

30 return true; public void GetOrderDetails() SqlDataReader myreader = default(sqldatareader); SqlCommand mycommand = new SqlCommand(SqlDataSource1.SelectCommand); SqlConnection myconnection = new SqlConnection(SqlDataSource1.ConnectionString); mycommand.connection = myconnection; myconnection.open(); string Query = null; Query = "SELECT * FROM [Customer]"; mycommand.commandtext = Query; myreader = mycommand.executereader(commandbehavior.closeconnection); while (myreader.read()) protected void btnorder_click(object sender, EventArgs e) GetOrderDetails(); SqlConnection myconnection = new SqlConnection(SqlDataSource1.ConnectionString); SqlCommand mycommand = new SqlCommand(SqlDataSource1.InsertCommand); mycommand.connection = myconnection; mycommand.parameters.addwithvalue("@orderid", Convert.ToInt32(lblOrderID.Text)); mycommand.parameters.addwithvalue("@custid", Convert.ToInt32(lblCustID.Text)); mycommand.parameters.addwithvalue("@orderdate", DateTime.Now.ToString()); mycommand.parameters.addwithvalue("@prodid", Convert.ToInt32(lblItemID.Text)); mycommand.parameters.addwithvalue("@orderquantity",convert.toint32(txtquantity.text)) ; mycommand.parameters.addwithvalue("@salesprice", lblprice.text); mycommand.parameters.addwithvalue("@paymethod", txtpaymethod.text); mycommand.parameters.addwithvalue("@cardholder", txtcardholder.text); mycommand.parameters.addwithvalue("@cardtype", txtcardtype.text); mycommand.parameters.addwithvalue("@cardnum",txtcardnumber.text); mycommand.parameters.addwithvalue("@expdate",convert.todatetime(txtexp.text)); 30

31 SqlDataReader MyReader; myconnection.open(); MyReader = mycommand.executereader(commandbehavior.closeconnection); while (MyReader.Read()) myconnection.close(); Response.Redirect(" protected void btncancel_click(object sender, EventArgs e) Response.Redirect(" 31

32 Check Out Purpose: Purchase items in shopping cart and complete the transaction. Design: Data Collected: Quantity of item, payment card info. Data Displayed: Order placed successfully. 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 Checkout : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 32

33 Entity Relationship Diagram (ERD) Data Definitions: Customer: CustID,FName,LName,DoB,Phone#, , Address, Zipcode Order: OrderID,CustID, OrderDate OrderDetails: OrderID, ProdID, OrderQuantity, SalesPrice Product: ProdID, ProdName, UnitPrice 33

Pentatonic Labs Final Documentation

Pentatonic Labs Final Documentation Pentatonic Labs Final Documentation Chelsea Reynolds, Eric Stirling, Tayler Albert, Kyle White, Tam Huynh 1 Table of Contents Site Hierarchy......3 Home.....4 Home Display............4 Default.aspx.cs......4

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Attention Students. Capistrano Valley Christian Schools has teamed up with EdTech for your online book store! Here's how it works:

Attention Students. Capistrano Valley Christian Schools has teamed up with EdTech for your online book store! Here's how it works: Attention Students Capistrano Valley Christian Schools has teamed up with EdTech for your online book store! Here's how it works: Your school's online book store opens on August 23rd, 2017, at cvc.shelfit.com.

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

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

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

SAP Sourcing/ Exostar - How To

SAP Sourcing/ Exostar - How To SAP Sourcing/ Exostar - How To How to create an Exostar user in esourcing Version 1.4 for internal and external use Sebastian Roesch Table of Content 2 Supplier Exostar Administrator Create and approve

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

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

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

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

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

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

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

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

Electronic Ordering Instructions with Credit Card Option. For Hilton Hotels Punch Out

Electronic Ordering Instructions with Credit Card Option. For Hilton Hotels Punch Out Electronic Ordering Instructions with Credit Card Option For Hilton Hotels Punch Out July 2005 Table of Contents Home Page... 3 Finding Products... 4 Browse Catalog... 4 Search Catalog... 7 Add To Cart...

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

Main Login Screen Enter user name and password. New users can call or customer service using the information provided. If you have forgotten

Main Login Screen Enter user name and password. New users can call or  customer service using the information provided. If you have forgotten Main Login Screen Enter user name and password. New users can call or email customer service using the information provided. If you have forgotten your password, enter your email address in the box provided

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

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

STLCC Print Shop. user guide version 2.0

STLCC Print Shop. user guide version 2.0 STLCC Print Shop user guide version 2.0 SUPPORT Contact our support team with any questions express.support@modernlitho.com 573-644-6245 Monday-Friday 7am-5pm CST GETTING STARTED Go to www.modernlithoonline.com

More information

1 string start = DateTime.Now.ToShortDateString(); 2 string end = DateTime.Now.AddDays(5).ToShortDateString(); 3 OleDbConnection conn2 =

1 string start = DateTime.Now.ToShortDateString(); 2 string end = DateTime.Now.AddDays(5).ToShortDateString(); 3 OleDbConnection conn2 = public partial class borrow : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) 1 string start = DateTime.Now.ToShortDateString(); 2 string end = DateTime.Now.AddDays(5).ToShortDateString();

More information

Rail Mall 4.0. User manual

Rail Mall 4.0. User manual Rail Mall 4.0 User manual siemens.com/railmall Table of content Rail Mall 4.0 At a glance 3 Search Options 5 Registration at Rail Mall 8 Order Process 11 Price and Material Request 17 Miscellaneous 19

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

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

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

How to register and enter scores for a NASP virtual tournament. Basic Steps:

How to register and enter scores for a NASP virtual tournament. Basic Steps: How to register and enter scores for a NASP virtual tournament. Basic Steps: 1. Register the school and the tournament roster. 2. Add group information, coaches, and other registration info. 3. Come back

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

Higher Reach Online Registration

Higher Reach Online Registration Higher Reach Online Registration July 12, 2013 (Version 1) kc This procedure guide contains information for students and administration. QUICK ADMIT Define three roles that someone can use to log in to

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

Creating & Managing My Club Account User Guide

Creating & Managing My Club Account User Guide Creating & Managing My Club Account User Guide Contents Registering for an Account My Account - Dashboard Profile Payments Other Payments Adult Player Registration Child Player Registration Official Roles

More information

Ockey.hockeycanada.ca. ehockey Online Clinic Registration English Manual. https://ehockey.hockeycanada.ca/ehockey

Ockey.hockeycanada.ca. ehockey Online Clinic Registration English Manual. https://ehockey.hockeycanada.ca/ehockey Ockey.hockeycanada.ca ehockey Online Clinic Registration English Manual https://ehockey.hockeycanada.ca/ehockey Table of Contents Contents Using this Manual... 3 How to Read this Manual...3 Navigating

More information

CALCULATOR APPLICATION

CALCULATOR APPLICATION CALCULATOR APPLICATION Form1.cs 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

Digital StoreFront TRAINING

Digital StoreFront TRAINING Florida Agricultural and Mechanical University Digital StoreFront TRAINING Faculty and Staff January 2017 What is Digital StoreFront (DSF)? Digital StoreFront is a web-to-print e-commerce site that allows

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

HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM

HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM HOW TO GUIDE: PURCHASING VOUCHER CODES THROUGH ULEARNATHLETICS.COM WHAT IS A VOUCHER CODE? A voucher code is a unique six-digit code that carries a monetary value. Voucher codes are not linked to specific

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

SWAGELOK COLUMBUS CHARLESTON QUICK LOOK GUIDE USER-FRIENDLY GUIDE TO NAVIGATING SWAGELOK.COM

SWAGELOK COLUMBUS CHARLESTON QUICK LOOK GUIDE USER-FRIENDLY GUIDE TO NAVIGATING SWAGELOK.COM SWAGELOK COLUMBUS CHARLESTON QUICK LOOK GUIDE USER-FRIENDLY GUIDE TO NAVIGATING SWAGELOK.COM Swagelok Columbus Charleston Quick Look Guide/ WEB HOW TO SWAGELOK COLUMBUS CHARLESTON CONTENTS How to Register

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

Download complete member portal details here (include PDF sent the other day) ALL WORKS MEMBERS WILL NEED TO SET UP A NEW PORTAL ACCOUNT

Download complete member portal details here (include PDF sent the other day) ALL WORKS MEMBERS WILL NEED TO SET UP A NEW PORTAL ACCOUNT MEMBER PORTAL CLICK HERE TO ENTER THE MEMBER PORTAL https://theworkshealthclub.thememberspot.com/account/login NEW CLUB AUTOMATION PORTAL IS HERE Through the portal s dashboard tab you will be able to:

More information

How to place an order on CSI s online store

How to place an order on CSI s online store How to place an order on CSI s online store Store website http://store.csionline.org/ 1. Click on account, then log in 2. Create an account or LOGIN using your currently registered email and password.

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 Spring Item. Field Data Type Description Example Constraints Required. The ID for this table; autoincremented.

Project Spring Item. Field Data Type Description Example Constraints Required. The ID for this table; autoincremented. Item The ID for this table; autoincremented. 2 name The name of this Black House of Staunton vinyl chess board inventory_level The current number of this item in storage. 29 reorder_level The number of

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

Getting Started. If you have any questions please send an to

Getting Started. If you have any questions please send an  to Open the TouchBase webpage https://touchbase.bsd405.org/ and select one of the following options - Each registered student has a web account. The User Name is the Student s ID The Password is the student

More information

Conlabz_Zipcode_Validation_EN

Conlabz_Zipcode_Validation_EN Configuration To activate the extension, navigate to System -> Configuration -> Customers -> Customer configuration and set "Validate zip code" under the Name and Address Options to "Yes". CONLABZ_ZIPCODE_VALIDATION_EN

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

EducoSoft. Student Registration

EducoSoft. Student Registration EducoSoft Student Registration 1. Register 2-5 2. Register using Access Code 6-8 3. Pay for Web Access and Register 9-14 4. Purchase a Book and Register 15 21 5. Repeat Registration 22-23 1 1. Register

More information

Rail Mall 4.0. User manual

Rail Mall 4.0. User manual Rail Mall 4.0 User manual siemens.com/railmall Table of content Rail Mall 4.0 At a glance 3 Search Options 5 Registration at Rail Mall 8 Order Process 11 Wishlist 17 Price and Material Request 20 Miscellaneous

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

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni Vision Document 2.0 Online Book Store Phase-II Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Vamsi Krishna Mummaneni CIS 895 MSE Project Kansas State

More information

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PDA Account Registration On the America s Health Insurance Plans website (www.ahip.org/courses ), Click Register and submit your information. Please note

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

[Document subtitle] Mladen Mandrapa [Date] [Course title]

[Document subtitle] Mladen Mandrapa [Date] [Course title] 1 [Document subtitle] Mladen Mandrapa [Date] [Course title] Instructions for Order Tracking and Online Store Table of Contents LOGGING IN... 2 DISTRIBUTOR LOGIN... 2 ENTERING SITE... 3 ORDER TRACKING...

More information

COOKBOOK Creating an Order Form

COOKBOOK Creating an Order Form 2010 COOKBOOK Creating an Order Form Table of Contents Understanding the Project... 2 Table Relationships... 2 Objective... 4 Sample... 4 Implementation... 4 Generate Northwind Sample... 5 Order Form Page...

More information

JDL Rock Pty Ltd trading as Hair4Now Ordering Products Online ~ Customer Guide ~

JDL Rock Pty Ltd trading as Hair4Now Ordering Products Online ~ Customer Guide ~ JDL Rock Pty Ltd trading as Hair4Now Ordering Products Online ~ Customer Guide ~ 1. A customer account is required to purchase products online with Hair4Now. To establish a customer account click on Register

More information

Step 1 - Go to Step 2 - Login to your account. Step 3 - Click Register for a Test. Step 4 - Read the Requirements

Step 1 - Go to   Step 2 - Login to your account. Step 3 - Click Register for a Test. Step 4 - Read the Requirements Step 1 - Go to www.texes.ets.org Go to www.texes.ets.org Click the register link found in the top navigation. Step 2 - Login to your account Enter your username and password and click login. If you do

More information

aveo.com.au/residents

aveo.com.au/residents 1 Welcome to Retail Discounts by Aveo Benefits. There are huge savings to be made and access to discounts on a wide range of items, including shopping at many major retailers. Access to the Retail Discounts

More information

To register for TALON Robotics complete the following steps: Summer 2016 Program. Visit Click Here to Begin Registration

To register for TALON Robotics complete the following steps: Summer 2016 Program. Visit   Click Here to Begin Registration To register for TALON Robotics complete the following steps: Visit www.polk.edu/talon Click Here to Begin Registration Summer 2016 Program Click Here to Begin Registration TALON Robotics at Polk State

More information

Adobe Purchase Authorization System

Adobe Purchase Authorization System The Right Technology. Right Away. Adobe Purchase Authorization System Guide to using CDW s Adobe Pro Site www.cdw.com/adobepro Last update January 2008 Place an order... pages 03-21 Track an order... pages

More information

ORDERING PRINT RESOURCES

ORDERING PRINT RESOURCES ORDERING PRINT RESOURCES About YMCA Awards web shop... 1 Placing orders via the YMCA Awards web shop... 1 Updating/adding a delivery address... 7 About YMCA Awards web shop The YMCA Awards web shop allows

More information

Empathy Parent Manual

Empathy Parent Manual Empathy Parent Manual www.itschools.co.za Contents Overview... 1 What is Empathy?... 1 How to Order Books... 1 Getting Started: Registration and Login... 1 Registration for New Users... 1 Account Creation...

More information

USER GUIDE Conversion and Validation of User Input

USER GUIDE Conversion and Validation of User Input 2010 USER GUIDE Conversion and Validation of User Input Conversion and Validation of User Input Code On Time applications offer powerful methods of converting and validating field values entered by users.

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

What personal data we collect and why we collect it

What personal data we collect and why we collect it Who we are Jinny Beyer Studio is a two-story shop located in Great Falls, Virginia. We also have a mailorder business run through our website. Our website address is: https://jinnybeyer.com. What personal

More information

Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference.

Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference. Welcome to the easy step-by-step instructions on how to register for the Energy Generation Conference. If you have not created a profile account on our registration site before, you must do so before you

More information

Introduction. Logging In. https://portal.format.co.nz/login/trt

Introduction. Logging In. https://portal.format.co.nz/login/trt Introduction Welcome to the Tidd Ross Todd On-line Ordering System. This site has been created with the intention to assist users with the following: placing orders viewing work in progress searching for

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

How to Register. Instructors. Administrators

How to Register. Instructors. Administrators How to Register To Register for Contren Connect, you must have an access code. If you have not purchased one, please see our How to Purchase page. If you have an access code, please click on the Login/Register

More information

Creating a NEW ASP.NET Mobile Web Application

Creating a NEW ASP.NET Mobile Web Application 31_041781 ch28.qxp 8/1/06 9:01 PM Page 1149 Mobile Development We are entering an era of mobile applications. Mobile devices are getting better, faster, and cheaper every year. The bandwidth on these devices

More information

Login Page. A link is provided on this page allowing new users to register.

Login Page. A link is provided on this page allowing new users to register. Login Page A link is provided on this page allowing new users to register. Returning Users can simply enter their Username and Password to enter the site. If you are a returning user and have forgotten

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

PD ShippingCom (Reference Guide)

PD ShippingCom (Reference Guide) PD ShippingCom (Reference Guide) For use with all versions of PD Shipping Component Revised: 9/1/2017 PageDown Technology, LLC / Copyright 2017 All Rights Reserved. 1 Table of Contents Table of Contents...

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

Customer Care - How to Order Replacement Parts Using RPP

Customer Care - How to Order Replacement Parts Using RPP Customer Care - How to Order Replacement Parts Using RPP February 07 How to Access the site RPP is accessed by entering www.replacementpartspros.com in your web browser: The RPP home/login page is shown

More information

Ada County Highway District. etrakit User Manual. A guide for using the online system for Projects, etrakit

Ada County Highway District. etrakit User Manual. A guide for using the online system for Projects, etrakit Ada County Highway District etrakit User Manual A guide for using the online system for Projects, etrakit Ada County Highway District 3775 Adams Street Garden City, ID 83714 PH 208 387-6100 FX 345-7650

More information

The Workwear Group Online Ordering Manual. Ramsay Health Care

The Workwear Group Online Ordering Manual. Ramsay Health Care The Workwear Group Online Ordering Manual Ramsay Health Care 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

Login & Register for LRC Programs. How to Create/Activate your Live Leduc Account

Login & Register for LRC Programs. How to Create/Activate your Live Leduc Account How to Create/Activate your Live Leduc Account Step 1: Visit www.live.leduc.ca in your web browser. If you already have a membership (you or your kids) or an account with the LRC click on LOGIN. Remember,

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

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

Matthew Clark Live. User

Matthew Clark Live. User Matthew Clark Live User Contents 2 Introduction 3 Registration 4 Logging in 6 Your home page 7 My account page 8 Creating new users 9 Running reports 10 Order Now page 11 Quick order pad 12 Saved orders

More information

HOW TO PURCHASE A TEAS TRANSCRIPT

HOW TO PURCHASE A TEAS TRANSCRIPT How to Purchase a TEAS Transcript 1 HOW TO PURCHASE A TEAS TRANSCRIPT ATI has made it possible for students to purchase a TEAS Transcript after your test date via the ATI Web site Online Store. Complete

More information

COIT20248: Information Systems Analysis and Design Term 2, 2015 Assignment 2. Lecturer: Dr. Meena Jha Tutor: Aries Tao

COIT20248: Information Systems Analysis and Design Term 2, 2015 Assignment 2. Lecturer: Dr. Meena Jha Tutor: Aries Tao COIT20248: Information Systems Analysis and Design Term 2, 2015 Assignment 2 Lecturer: Dr. Meena Jha Tutor: Aries Tao Prepared by: AXXXX XXXX: S0XXXXXX AXXXX MXXXXX: BisXXXXX BaXXXX: S0XXXXX S02XXXX SXXXXX

More information

What are Non-Catalog Orders?

What are Non-Catalog Orders? What are Non-Catalog Orders? Non-Catalog Orders are intended to address purchasing needs that fall outside of typical requests within a punch-out site, catalog or form. Prior to beginning a Purchase Request,

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

FedEx Office Print Online Corporate

FedEx Office Print Online Corporate Quick Reference Guide DocStore Catalog Log in to FedEx Office Print Online Corporate 1. Open your browser and navigate to: https://printonline.fedex.com/nextgen/wu 2. Input User ID and Password and click

More information

VALO ecommerce User Guide. VALO Commerce

VALO ecommerce User Guide. VALO Commerce VALO ecommerce User Guide VALO Commerce Table of Contents Introduction to VALO Commerce... 1 Using VALO Commerce... 1 Access Your Commerce Site... 2 Browse the Catalog... 4 Customize an Item... 6 Place

More information