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

Size: px
Start display at page:

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

Transcription

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

2 Table of Contents SITE HIERARCHY: 5 WEB.CONFIG CODE: 6 LOGIN CREDENTIALS 6 HOME PAGE: 7 Purpose: 7 Design: 7 Data Collected: 7 Data Displayed: 7 DEFAULT.ASPX SCREEN (HOME PAGE) 8 DEFAULT.ASPX.CS (HOME PAGE) 9 ABOUT PAGE: 10 Purpose: 10 Design: 10 Data Collected: 10 Data Displayed: 10 ABOUT.ASPX SCREEN 11 ABOUT.ASPX.CS 12 CHECKOUT PAGE: 13 Purpose: 13 Design: 13 Data Collected: 13 Data Displayed: 13

3 CHECKOUT.ASPX SCREEN 14 CHECKOUT.ASPX.CS 15 CONTACT INFO PAGE: 16 Purpose: 16 Layout Design: 16 Data Collected: 16 Data Displayed: 16 CONTACTINFO.ASPX SCREEN 17 CONTACTINFO.ASPX.CS 18 LOGIN PAGE: 19 Purpose: 19 Layout Design: 19 Data Collected: 19 Data Displayed: 19 LOGIN.ASPX SCREEN 20 LOGIN.ASPX.CS 21 PACKAGES PAGE: 23 Purpose: 23 Layout Design: 23 Data Collected: 23 Data Displayed: 23 PRODUCTS.ASPX SCREEN 24 PRODUCTS.ASPX.CS 25

4 SHOPPING CART: 27 Purpose: 27 Layout Design: 27 Data Collected: 27 Data Displayed: 27 SHOPPINGCART.ASPX SCREEN 28 SHOPPINGCART.ASPX.CS 29 REGISTRATION PAGE: 31 Purpose: 31 Layout Design: 31 Data Collected: 31 Data Displayed: 31 SIGNUP.ASPX SCREEN 32 SIGNUP.ASPX.CS 33 UPDATE PAGE: 34 Purpose: 34 Layout Design: 34 Data Collected: 34 Data Displayed: 34 UPDATE.ASPX SCREEN 35 UPDATE.ASPX.CS 36 DATABASE STRUCTURE: 39 DATA DEFINITION: 40

5 5 Site Hierarchy:

6 6 Web.Config Code: <?xml version="1.0"?> <configuration> <connectionstrings> <add name="savageconnectionstring" connectionstring="data Source=mimas.itds.unt.edu;Initial Catalog=Savage;Persist Security Info=True;User ID=SavageAdmin;Password=uFmKe8QN" providername="system.data.sqlclient" /> <add name="savageconnectionstring2" connectionstring="data Source=mimas.itds.unt.edu;Initial Catalog=Savage;Persist Security Info=True;User ID=ECUser;Password=10nrszMoc1" providername="system.data.sqlclient" /> </connectionstrings> <system.web> <compilation debug="true" targetframework="4.0"/> </system.web> </configuration> Login Credentials: Username: Password: admin

7 7 Home Page: Purpose: The home page will provide guests and shoppers with what they are looking in a main, greeting page. The purpose our website s home page is to grab the visitor s attention and make them want to learn more, shop and/or help us market to new students and new markets. Design: The page contains the menu bar at the top with direct links to the pages needed for the clients to learn about the company, see our products, register as a customer, and buy the products. There is a banner and another button for the customers to go directly to our products page. There s also a welcome message for the clients. Data Collected: No data will be collected. Data Displayed: Our master page has the navigation bar and there for all the webpages to display this data. This page also displays the data about our partners and links to our twitter and Facebook.

8 8 Default.aspx Screen (Home Page)

9 9 Default.aspx.cs (Home Page) 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)

10 10 About Page: Purpose: The about page will provide guests and shoppers an idea of who we are as founders and as a company through a picture and a mission statement. Also, this page will also us to provide prospective customers an opportunity to read reviews. Design: The page has the official logo of the company as well as information about the company and the mission statement. Data Collected: No data will be collected. Data Displayed: Our master page has the navigation bar and there for all the webpages to display this data. This page also displays the data about our founders and information about our company. Additionally, through a link to twitter, we will display reviews from our customers.

11 11 About.aspx Screen

12 12 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)

13 13 Checkout Page: Purpose: Users shall use this page to provide us with their information such as their name, address, and telephone number and billing address if different from the shipping address. This page puts this information into the database, so we can fetch it later for our use. Design: This page has the input field boxes throughout the page for the customers to add their billing info. The payment form is located in this page. Data Collected: Customer information is collected and saved in our database. We will take the first name, last name, address, shipping/billing addresses, and telephone number of the users. Data Displayed: Input fields with labels so the customers know which field to be used for the relevant information.

14 14 Checkout.aspx Screen

15 15 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) 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);

16 16 Contact Info Page: Purpose: This page connects the customers to our business by providing our contact information such as our address, phone numbers, Facebook link, twitter link, and available hours. Customers can choose their preferred method of contacting us regarding any issue they may come across. Layout Design: The page has the official logo of the company as well as the contact information of the company, so the customers can reach out if they have any concerns. Data Collected: No data is collected. Data Displayed: Business address, telephone number, link to Facebook for messaging, link to twitter for messaging, and hours of operation shall be mentioned in this page, so the customers know what is the best way and time to contact us.

17 17 ContactInfo.aspx Screen

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

19 19 Login Page: Purpose: This page is essential for site security as well as allowing customers to access our site. Customer will provide credentials such as username and password. Once the customers have been authenticated they will be redirected to their customer account page. Layout Design: The page has the official logo of the company at the center. There are input fields for the users to type their username and password. Three buttons in the bottom direct users to the function they want to perform. They can login clicking the sign in button, or update their information clicking the update button. The sign-up button takes them to the register page. Data Collected: Username and Password data will be collected. Data Displayed: If customer is not authenticated error messages will appear.

20 20 Login.aspx Screen

21 21 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; using System.Data.Sql; public partial class login : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) protected void btnsignin_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", TextBox2.Text); mycommand.parameters.addwithvalue("@ ", TextBox1.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 (TextBox2.Text == "") lblmessage.text = "Please enter your information! If you don't have an account, please register!"; else if (TextBox2.Text.Trim() == Password) Session["UserName"] = UserID; Session["User "] = TextBox1.Text.Trim(); Response.Redirect("Default.aspx"); else lblmessage.text = "Incorrect Information! If you don't have an account, please register!"; protected void btnsignup_click(object sender, EventArgs e) Response.Redirect("Signup.aspx");

22 22 protected void btnupdate_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", TextBox2.Text); mycommand.parameters.addwithvalue("@ ", TextBox1.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 (TextBox2.Text == "") lblmessage.text = "Please enter you login information"; else if (TextBox2.Text.Trim() == Password) Session["UserName"] = UserID; Session["User "] = TextBox1.Text.Trim(); Response.Redirect("Update.aspx"); else lblmessage.text = "Incorrect User Name or Password ";

23 23 Packages Page: Purpose: The Products page will showcase the different services that Savage Bros Cleaning and Moving provides for our customers. Customers can select a service and add the particular service to their cart for purchase. Layout Design: The page opens with a brief message about the products and then at the center there are three boxes for the three different product types with description, pictures, price, and an option to add them to the cart. Data Collected: Product purchase data will be collected. Data Displayed: No data is displayed on the product's purchase page.

24 24 Products.aspx Screen

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

26 26

27 27 Shopping Cart: Purpose: Users shall use this page as confirmation for their order and date of service. This page tells them the details of the order summary. This page puts this information into the database, so we can fetch it later for our use. Layout Design: The products added to the cart appear in this page. Users can update their cart by clicking the update button and then adding or removing products. Or they can click the checkout button at the bottom to continue with their purchase. Data Collected: Customer confirmation date is collected and saved in our database. We will take the date confirmed by the user. Data Displayed: Input fields with labels so the customers know which field to be used for the relevant information.

28 28 ShoppingCart.aspx Screen

29 29 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() // 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)

30 30 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); ShoppingCart cart = ShoppingCart.Instance; cart.setitemquantity(productid, quantity); catch (FormatException) BindData(); protected void btncheckout_click(object sender, EventArgs e) Response.Redirect("Checkout.aspx"); protected void btnproducts_click(object sender, EventArgs e) Response.Redirect("Products.aspx"); protected void gvshoppingcart_selectedindexchanged(object sender, EventArgs e)

31 31 Registration Page: Purpose: Users shall use this page to provide us with their information such as their name, address, and telephone number so we could send them newsletters and tell them about our products. This page puts this information into the database, so we can fetch it later for our use. Layout Design: The page has the official logo of the company as well as input fields so that the users can provide the information we will need from them to create an account for them. There is a signup button at the bottom of the form which confirms the registration of the user. Data Collected: Customer information is collected and saved in our database. We will take the first name, last name, address, and telephone number of the users. Data Displayed: Input fields with labels so the customers know which field to be used for the relevant information.

32 32 SignUp.aspx Screen

33 33 SignUp.aspx.cs using System; using System.Collections.Generic; using System.Linq; using System.Data; using System.Data.SqlClient; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class signup : 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("@ ", TextBox5.Text); mycommand.parameters.addwithvalue("@password", TextBox3.Text); mycommand.parameters.addwithvalue("@fname", TextBox1.Text); mycommand.parameters.addwithvalue("@lname", TextBox2.Text); mycommand.parameters.addwithvalue("@yob", TextBox6.Text); SqlDataReader myreader; myconnection.open(); myreader = mycommand.executereader(commandbehavior.closeconnection); myconnection.close(); Response.Redirect("login.aspx");

34 34 Update Page: Purpose: Users shall use this page to provide us with their updated information such as their name, address, and telephone number so we could ensure they are getting the newsletters and information about our products. This page overwrites this information into the database, so we can fetch it later for our use. The previous information gets replaced with the new one. Layout Design: The page has the official logo of the company as well as input fields so that the users can update the information we will need from them to change information in their account. There is an update button at the bottom of the form which confirms that the information has been updated. Data Collected: Update customer information is collected and saved in our database. We will take the first name, last name, address, and telephone number of the users depending on what needs to be updated. Data Displayed: Input fields with labels so the customers know which field to be used for the relevant information.

35 35 Update.aspx Screen

36 36 Update.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; using System.Data.Sql; public partial class Update : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) if (!IsPostBack) // Use the session state object variable to retrieve the user's record SqlDataReader MyReader; SqlConnection myconnection = new SqlConnection(SqlDataSource1.ConnectionString); SqlCommand mycommand = new SqlCommand(SqlDataSource1.SelectCommand); mycommand.connection = myconnection; mycommand.parameters.addwithvalue("@ ", Session["User "]); myconnection.open(); try // populate the labels if the retrieve is successful MyReader = mycommand.executereader(commandbehavior.closeconnection); while (MyReader.Read()) TextBox1.Text = MyReader.GetString(2).Trim(); TextBox2.Text = MyReader.GetString(3).Trim(); lblpassword.text = MyReader.GetString(1).Trim(); TextBox5.Text = MyReader.GetString(0).Trim(); TextBox6.Text = Convert.ToString(MyReader.GetInt32(4)); catch (Exception) // what to do if the retrieval fails Response.Redirect("Login.aspx"); myconnection.close(); protected void btnsubmit_click(object sender, EventArgs e) string FirstName; string LastName; // Has user changed (used as primary key)? if (TextBox5.Text.Trim()!= (String)Session["User "])

37 37 SqlConnection MyConnection = new SqlConnection(SqlDataSource1.ConnectionString); // Destroy the current record with a SQL DELETE using old as key SqlCommand MyCommand = new SqlCommand(SqlDataSource1.DeleteCommand); MyCommand.Connection = MyConnection; MyCommand.Parameters.AddWithValue("@ ", Session["User "]); SqlDataReader MyReader; MyConnection.Open(); MyReader = MyCommand.ExecuteReader(CommandBehavior.CloseConnection); MyConnection.Close(); // Now start building a completely new record SqlCommand MyCommand2 = new SqlCommand(SqlDataSource1.InsertCommand); MyCommand2.Connection = MyConnection; MyCommand2.Parameters.AddWithValue("@ ", TextBox5.Text); if ((TextBox3.Text == "")) MyCommand2.Parameters.AddWithValue("@Password", lblpassword.text); else MyCommand2.Parameters.AddWithValue("@Password", TextBox3.Text); MyCommand2.Parameters.AddWithValue("@FName", TextBox1.Text); FirstName = TextBox1.Text.Trim(); MyCommand2.Parameters.AddWithValue("@LName", TextBox2.Text); LastName = TextBox2.Text.Trim(); MyCommand2.Parameters.AddWithValue("@YoB", Convert.ToInt32(TextBox6.Text)); SqlDataReader MyReader2; MyConnection.Open(); MyReader2 = MyCommand2.ExecuteReader(CommandBehavior.CloseConnection); // Update both session state object variables Session["User "] = TextBox5.Text; Session["UserName"] = (FirstName + (" " + LastName)); else // What to do if user keeps but makes any other change(s) SqlConnection MyConnection = new SqlConnection(SqlDataSource1.ConnectionString); // change the current record by using a SQL UPDATE SqlCommand MyCommand = new SqlCommand(SqlDataSource1.UpdateCommand); MyCommand.Connection = MyConnection; MyCommand.Parameters.AddWithValue("@ ", TextBox5.Text); if ((TextBox3.Text == "")) MyCommand.Parameters.AddWithValue("@Password", lblpassword.text); else MyCommand.Parameters.AddWithValue("@Password", TextBox3.Text); MyCommand.Parameters.AddWithValue("@FName", TextBox1.Text); FirstName = TextBox1.Text.Trim(); MyCommand.Parameters.AddWithValue("@LName", TextBox2.Text); LastName = TextBox2.Text.Trim(); MyCommand.Parameters.AddWithValue("@YoB", Convert.ToInt32(TextBox6.Text));

38 38 // Write the record SqlDataReader MyReader; MyConnection.Open(); MyReader = MyCommand.ExecuteReader(CommandBehavior.CloseConnection); MyConnection.Close(); // Update session state object variable in case changed Session["UserName"] = (FirstName + (" " + LastName)); Response.Redirect("Default.aspx"); // either way, redirect

39 39 Database Structure:

40 40 Data Definition: Customer_Account(Customer_ID, Customer_First_Name, Customer_Last_Name, Customer_ , Customer_Address, Customer_City, Customer_State, Customer_Zipcode, Customer_Phone_Number, Customer_Date_of_Birth) Payment_Details(Payment_ID, Customer_ID, Order_Total, CreditCard_Number, CreditCard_Expiration, CreditCard_CVV_Number, CreditCard_Billing) Order_Details(Order_ID, Product_ID, Customer_ID, Order_Status, Order_Total) Product_Details(Product_ID, Order_ID, Customer_ID, Product_Description, Product_Price)

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

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

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

Melon, Inc. Melon Components Starter Kit

Melon, Inc. Melon Components Starter Kit User s Guide for Melon Components Starter Kit For additional information www.meloncomponents.com Contact us at info@meloncomponents.com 2010 All rights reserved Contents Overview... 3 Melon Components

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

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

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

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

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

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

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

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F.

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. ! Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. Save and complete! A. Identify version number A.1. Log in to Admin

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

32-bit Oracle Data Access Components (ODAC) with Oracle Developer Tools for Visual Studio

32-bit Oracle Data Access Components (ODAC) with Oracle Developer Tools for Visual Studio 32-bit Oracle Data Access Components (ODAC) with Oracle Developer Tools for Visual Studio 1 2 Conexiune - Oracle.ManagedDataAccess.Client... 3 using Oracle.ManagedDataAccess.Client;... public partial class

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

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

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

Gift Card Magento Extension User Guide Official extension page: Gift Card

Gift Card Magento Extension User Guide Official extension page: Gift Card Gift Card Magento Extension User Guide Official extension page: Gift Card Page 1 Table of contents: 1. General Settings...3 2. Product Creation........7 3. Product Price Settings......8 4. Gift Card Information

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

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

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

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

SMS Plugin for WooCommerce Manual

SMS Plugin for WooCommerce Manual SMS Plugin for WooCommerce Manual v1.0.0 Contents Installation Configuration Account Info Tab Account Setup Send SMS panel Actions Tab New Order panel Order Status panel Additional Notification Settings

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

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

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

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

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

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

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

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

A&P Solutions Supplier Portal

A&P Solutions Supplier Portal A&P Solutions, Oct 2016 Index 1. How to Log In... 1 1.1 Credentials... 1 2. Welcome Page... 2 3. User Profile... 4 3.1 Profile View... 5 3.2 Change Password... 6 3.3 Edit User Data... 7 3.4 Edit Company

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

Web site integration (c#)

Web site integration (c#) Web site integration (c#) Summary I need help with integration of a few components in our new website like forum, blog and wiki. These components are free, existing ones like, YetAnotherForum, NetBlogEngine

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

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

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

Orbit Store Documentation User

Orbit Store Documentation User Orbit Store Documentation User A. Registration 1. Click on the Register link found on the upper right navigation 2. Supply username and email field with the correct information for the CREATE ACCOUNT section

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

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

USER GUIDE for Simon Malls On-Line Resource Center. SimonResourceCenter.com

USER GUIDE for Simon Malls On-Line Resource Center. SimonResourceCenter.com USER GUIDE for Simon Malls On-Line Resource Center SimonResourceCenter.com Welcome to the Online Resource Center for printing and fulfillment. You have access to this site 24 hours a day, 7 days a week.

More information

EMPLOYEE STORE ORDERING INSTRUCTIONS

EMPLOYEE STORE ORDERING INSTRUCTIONS STEP 1: Create an Account/Log-In STEP 2: Place an Order STEP 3: Enter delivery/shipping information STEP4: Payment EMPLOYEE STORE ORDERING INSTRUCTIONS STEP 1: CREATE AN ACCOUNT/LOG-IN Once you have clicked

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

Answer on Question# Programming, C#

Answer on Question# Programming, C# Answer on Question#38723 - Programming, C# 1. The development team of SoftSols Inc. has revamped the software according to the requirements of FlyHigh Airlines and is in the process of testing the software.

More information

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable();

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); Getting Started with protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); string connectionstring = System.Configuration.ConfigurationManager.ConnectionStrings ["default"].connectionstring;!

More information

Dstewart.com FAQs Reference Guide

Dstewart.com FAQs Reference Guide Dstewart.com FAQs Reference Guide Find answers to the most common questions regarding The Douglas Stewart Company s online experience Table of Contents: 1. Where can I find: Quick Order Order History Wish

More information

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE

CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE CAMPAIGNER MAGENTO EXTENSION SETUP GUIDE This setup guide will help you integrate Magento with your Campaigner account. A API Settings API username/password You must enter the API credentials for your

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

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version

ONE STEP CHECKOUT. USER GUIDE for Magento 2.0. Version support@magestore.com sales@magestore.com +1-415-954-7137 ONE STEP CHECKOUT USER GUIDE for Magento 2.0 Version 1.0 One step checkout v1.0 User Guide for Magento 2.0 1 Table of Contents 1. INTRODUCTION

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

VAR OUT-OF-THE-BOX STORE

VAR OUT-OF-THE-BOX STORE VAR OUT-OF-THE-BOX STORE CUSTOMIZATION GUIDE CONTENTS OVERVIEW OF THE VAR OUT-OF-THE-BOX STORE... 3 New Benefits of VAR Out-of-the-box Store... 3 CUSTOMIZATION OPTIONS... 4 Customization Opportunities...

More information

place an order or Review your Patterson Advantage benefits and account information.

place an order or Review your Patterson Advantage benefits and account information. If you have an existing username and password for the website, select the Sign In button or enter your credentials in the Sign In field. To sign up for a new online account, select the Sign In button or

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

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

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

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

Affiliate Guide. Version Jan 2017

Affiliate Guide. Version Jan 2017 Website: http://magehit.com Contact: sale@magehit.com Affiliate Guide Version 4.0.5 - Jan 2017 Configuration Go to System >> Configurations >> MageHit >> Affiliate Pro (or Affiliate Pro >> Configuration)

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

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS TIS HELP FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 TIE... 3 1.2 Account set up in TIS... 3 1.3 VAT number (EU only)... 3 1.4 Business license number (China only)... 3 1.5 Access levels...

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

ecommerce USER GUIDE

ecommerce USER GUIDE ecommerce USER GUIDE ecommerce USER GUIDE TABLE OF CONTENTS Page Page Page Page Page 7 Page 8 Page 9 Page 0 Page Page Page Page Page 7 Page 8 Page 9 Page 0 What s New in the Latest Version Login Ask to

More information

USER MANUAL. Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1

USER MANUAL. Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 5 Plug-in

More information

Sitecore E-Commerce Cookbook

Sitecore E-Commerce Cookbook Sitecore E-Commerce Cookbook Rev: 2011-09-12 Sitecore E-Commerce Fundamental Edition 1.1 Sitecore E-Commerce Cookbook A marketer's guide to the Sitecore E-Commerce Fundamental Edition Sitecore E-Commerce

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

ReCPro TM User Manual Version 1.15

ReCPro TM User Manual Version 1.15 Contents Web Module (recpro.net)... 2 Login... 2 Site Content... 3 Create a New Content Block... 4 Add / Edit Content Item... 5 Navigation Toolbar... 6 Other Site Tools... 7 Menu... 7 Media... 8 Documents...

More information

1. OpenCart 1.5 Home Browsing the store front Admin interface Catalog Categories

1. OpenCart 1.5 Home Browsing the store front Admin interface Catalog Categories 1 1. OpenCart 1.5 Home............................................ 5 1.5.1 Browsing the store front.................................. 5 1.5.2 Admin interface......................................... 14

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

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 Book Store. Phase-III. Vamsi Krishna Mummaneni

User Manual Online Book Store. Phase-III. Vamsi Krishna Mummaneni User Manual Online Book Store Phase-III Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Vamsi Krishna Mummaneni CIS 895 MSE Project Kansas State University

More information

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1

USER MANUAL. DynamicsPort - Dynamics CRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 1.2.1 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 Dynamics CRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 5 Plug-in

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

charts SHOP ANYTIME ANYWHERE GOSPICERS.CA FAST, EASY & CONVENIENT

charts SHOP ANYTIME ANYWHERE GOSPICERS.CA FAST, EASY & CONVENIENT charts SHOP ANYTIME ANYWHERE GOSPICERS.CA FAST, EASY & CONVENIENT Access Product Information 4/7 View Up-to-Date Pricing Check Available Inventory Improve Purchasing Efficiencies Shop Securely Anytime

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

Design and Implementation of E-Commerce Site for Online Shopping

Design and Implementation of E-Commerce Site for Online Shopping Governors State University OPUS Open Portal to University Scholarship All Capstone Projects Student Capstone Projects Summer 2014 Design and Implementation of E-Commerce Site for Online Shopping Sidhartha

More information

QNet Online Ordering Ordering Instructions

QNet Online Ordering Ordering Instructions QNet Online Ordering Ordering Instructions If you require any assistance please don t hesitate to contact your account manager or coordinator on +61 3 9834 3000. Page 1 Getting Started: DMC Group s Quantum

More information

ecorner Stores Plus CloudShops

ecorner Stores Plus CloudShops ecorner Stores Plus CloudShops Quick Start Guide ecorner Pty Ltd Australia Free Call: 1800 033 845 New Zealand: 0800 501 017 International: +61 2 9494 0200 Email: info@ecorner.com.au The information contained

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

STREAMONE CLOUD MARKETPLACE ORDER AND MANAGEMENT GUIDE

STREAMONE CLOUD MARKETPLACE ORDER AND MANAGEMENT GUIDE STREAMONE CLOUD MARKETPLACE ORDER AND MANAGEMENT GUIDE StreamOne Cloud Marketplace Order and Management Guide Navigating to the StreamOne Cloud Marketplace Creating a Quote Converting a Quote to an Order

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

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop 205CDE Developing the Modern Web Assignment 2 Server Side Scripting Scenario D: Bookshop Introduction This assignment was written using PHP programming language for interactions with the website and the

More information

Learning Management System. User Manual

Learning Management System. User Manual Learning Management System Powered by SARAS User Manual Copyright Copyright 2013. Excelsoft. All rights reserved. If this document is distributed with software that includes an end-user agreement, this

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

parts.cat.com In 5 minutes.

parts.cat.com In 5 minutes. parts.cat.com In 5 minutes. Contents Welcome to parts.cat.com 1 Getting Started 2 Site Search 3 Part Number and Serial Number Search 4 Understanding your Search Results 5 Find Parts by Category 6 Find

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

DEALER TRAINING MANUAL YOUR ONLINE BACK OFFICE

DEALER TRAINING MANUAL YOUR ONLINE BACK OFFICE DEALER TRAINING MANUAL YOUR ONLINE BACK OFFICE 14000 SUNFISH LAKE BLVD SUITE G RAMSEY, MN 55303 TELEPHONE: 612-210-7008 Table of Contents Section 1 HOW TO LOGIN Section 2 Section 3 Section 4 Section 5

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

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

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

Gleeson College Ecommerce Portal Instructions

Gleeson College Ecommerce Portal Instructions Hello Parents, These instructions will guide you through purchasing your child s Tablet or Notebook device, Device Insurance, and Additional Accessories. We look forward to assisting you. Registration

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

Nissan Merchandise Store - Manual https://nissan.sapplive.co.za

Nissan Merchandise Store - Manual https://nissan.sapplive.co.za Contents About Sapphire Logistics How to place an order with us Contact Information Payment Methods & Banking Details Support & Returns Reset Website Password Website Registration Request Retailer Information

More information

COUPONPAQ ADMIN USER GUIDE

COUPONPAQ ADMIN USER GUIDE COUPONPAQ ADMIN USER GUIDE -2- Overview THANK YOU FOR CHOOSING COUPONPAQ SOFTWARE COUPONPAQ platform is the No 1 feature packed coupon distribution software on the market. It creates an effective incentive

More information

Trojan Professional Services

Trojan Professional Services Trojan Professional Services Registration Web address PCM.COM/EPP Returning Web Address bd.pcm.com Access Code Trojandentalassoc (not case sensative) Password Trojandental (case sensative) 1) Once logged

More information

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design.

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design. FINAL REPORT Table of Contents I) Project Planning II) User Analysis III) Tasks Analysis IV) Storyboard V) Function Design VI) Scenario Design VII) Database VIII) Usability Questionnaire IX) System Version

More information

Web to Print Service

Web to Print Service Web to Print Service In today s economy, marketing is more important than ever and the Partners Print Portal can help you achieve your marketing goals in an easy, cost effective manner. How? Grabs Attention

More information

K12PaymentCenter.com Parent User Manual

K12PaymentCenter.com Parent User Manual K12PaymentCenter.com Parent User Manual Education Management Systems, Inc. 4110 Shipyard Blvd, Wilmington, NC 28403 www.mealsplus.com or (800) 541-8999 Table of Contents 1.0 Welcome to K12PaymentCenter.com...

More information

StreamOne Cloud Marketplace. Order and Management Guide

StreamOne Cloud Marketplace. Order and Management Guide StreamOne Cloud Marketplace Order and Management Guide StreamOne Cloud Marketplace Order and Management Table of Contents Navigating to the StreamOne Cloud Marketplace Creating a Quote Converting a Quote

More information

Andowson Chang

Andowson Chang Andowson Chang http://www.andowson.com/ All JForum templates are stored in the directory templates, where each subdirectory is a template name, being the default template name callled default. There you

More information