Flash Database Access Passing Variables to Flash and Storing Flash Interaction Results in an Access Database.

Slides:



Advertisements
Similar presentations
1. XP 2 * The Web is a collection of files that reside on computers, called Web servers. * Web servers are connected to each other through the Internet.
Advertisements

Session Variables Storing Session Variables on the Server.
XP New Perspectives on Browser and Basics Tutorial 1 1 Browser and Basics Tutorial 1.
Java Script Session1 INTRODUCTION.
The Librarian Web Page Carol Wolf CS396X. Create new controller  To create a new controller that can manage more than just books, type ruby script/generate.
1 Chapter 12 Working With Access 2000 on the Internet.
XP Browser and Basics1. XP Browser and Basics2 Learn about Web browser software and Web pages The Web is a collection of files that reside.
Session 6 Server-side programming - ASP. An ASP page is an HTML page interspersed with server-side code. The.ASP extension instead of.HTM denotes server-side.
Using Visual Basic 6.0 to Create Web-Based Database Applications
Searching a Database Creating a Form for Users to Search a Database.
Creating WordPress Websites. Creating a site on your computer Local server Local WordPress installation Setting Up Dreamweaver.
Flash Quiz Results Storing Flash Quiz Results in an Access Database.
 The iPhone allows conferencing, call holding, call merging, caller ID, and integration with other cellular network features and iPhone functions.
Week 2 IBS 685. Static Page Architecture The user requests the page by typing a URL in a browser The Browser requests the page from the Web Server The.
Macromedia Flash 5 Advanced Level Course. Using Actions Toolbox ListActions List Parameters area Add/Delete a StatementMove Action Up/Down Expand/Collapse.
Macromedia Dreamweaver 4 Advanced Level Course. Add Rollovers Rollovers or mouseovers are possibly the most popular effects used in designing Web pages.
Master Detail Page Set Enabling Users to See More Detailed Data.
Browser and Basics Tutorial 1. Learn about Web browser software and Web pages The Web is a collection of files that reside on computers, called.
Computer Science 101 Web Access to Databases Overview of Web Access to Databases.
Database Updates Made Easy In WebFocus Using SQL And HTML Painter Sept 2011 Lender Processing Services 1.
Chapter 10 EJB Concepts of EJB Three Components in Creating an EJB Starting/Stopping J2EE Server and Deployment Tool Installation and Configuration of.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
MSSQL & ASP. Client-Server Relationship Client-Server Relationship HTML Basics HTML Basics Scripting Basics Scripting Basics Examples Examples.
FALL 2005CSI 4118 – UNIVERSITY OF OTTAWA1 Part 4 Web technologies: HTTP, CGI, PHP,Java applets)
Session 5: Working with MySQL iNET Academy Open Source Web Development.
Server-side Scripting Powering the webs favourite services.
© Cheltenham Computer Training 2001 Macromedia Dreamweaver 4 - Slide No 1 Macromedia Dreamweaver 4 Advanced Level Course.
Tutorial 10 Adding Spry Elements and Database Functionality Dreamweaver CS3 Tutorial 101.
Tutorial 1: Getting Started with Adobe Dreamweaver CS4.
Creating a Survey Using Dreamweaver’s Record Insertion Form Wizard.
XP New Perspectives on Browser and Basics Tutorial 1 1 Browser and Basics Tutorial 1.
Using Visual Basic 6.0 to Create Web-Based Database Applications
Mark Dixon Page 1 23 – Web applications: Writing data to Databases using PhP.
MAIL MERGE Designing Documents with. Terms Mail Merge: A process that inserts variable information into a standardized document to produce a personalized.
London April 2005 London April 2005 Creating Eyeblaster Ads The Rich Media Platform The Rich Media Platform Eyeblaster.
© Michelle C. Heckman All Rights Reserved. v6.0 Dreamweaver “UltraDev” CS125UDF This course qualifies as a CAS Web Master Related Elective.
Mark Dixon Page 1 23 – Web applications: Writing data to Databases using ASP.
9 Chapter Nine Compiled Web Server Programs. 9 Chapter Objectives Learn about Common Gateway Interface (CGI) Create CGI programs that generate dynamic.
Session 1 SESSION 1 Working with Dreamweaver 8.0.
Delta NYC Tracking and Custom Interaction Overview/Suggestions on a possible implementation strategy.
15/10/20151 PHP & MySQL 'Slide materials are based on W3Schools PHP tutorial, 'PHP website 'MySQL website.
Creating Dynamic Web Pages Using PHP and MySQL CS 320.
Our Examples Video Capture Working With Interactive Video Objects Buttons symbols – are areas on the monitor that a sensitive to user actions such.
ITEC 1001 Tutorial 1 Browser and Basics. Web browser software & Web pages The Web is a collection of files that reside on computers, called Web.
CSCI 6962: Server-side Design and Programming Database Manipulation in ASP.
ASP.NET The Clock Project. The ASP.NET Clock Project The ASP.NET Clock Project is the topic of Chapter 23. By completing the clock project, you will learn.
USING XML AS A DATA SOURCE. Data binding is a process by which information in a data source is stored as an object in computer memory. In this presentation,
XP 1 New Perspectives on XML Binding XML Data with Internet Explorer.
Concepts  messages are passed through the internet by using a protocol called simple mail transfer protocol.  The incoming messages are.
New Perspectives on XML, 2nd Edition Tutorial 9B1 USING XML AS A DATA SOURCE TUTORIAL 9B.
Mark Dixon Page 1 21 – Web applications: Writing data to Databases using ASP.
Topics Sending an Multipart message Storing images Getting confirmation Session tracking using PHP Graphics Input Validators Cookies.
Start Dreamweaver program From file menu click new Blank page appears.
Paging Through a Data Table Creating a Navigation Bar Using the Recordset Navigation Bar Server Behavior.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
Producing a high-impact web experience by integrate Macromedia Flash and ASP By Katie Tuttle CS 330: Internet Architecture and Programming Project.
Using Flash with php Very quick introduction to Flash Homework: work on projects.
Form Handling IDIA 618 Fall 2014 Bridget M. Blodgett.
COMP3241 E-Commerce Technologies Richard Henson University of Worcester November 2014.
27.1 Chapter 27 WWW and HTTP Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
8 Chapter Eight Server-side Scripts. 8 Chapter Objectives Create dynamic Web pages that retrieve and display database data using Active Server Pages Process.
© Copyright 2009 SSLPost 01. © Copyright 2009 SSLPost 02 a recipient is sent an encrypted that contains data specific to that recipient the data.
ASP-2-1 SERVER AND CLIENT SIDE SCRITPING Colorado Technical University IT420 Tim Peterson.
XP Creating Web Pages with Microsoft Office
Running a Forms Developer Application
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Displaying a Data Table
PHP / MySQL Introduction
Grocery Store Outline csc242 – web programming.
Presentation transcript:

Flash Database Access Passing Variables to Flash and Storing Flash Interaction Results in an Access Database

Flash Database Access Storing Flash interaction results is a four- step process. First, you identify the user whose results you will be saving. Second, you send this user to the page in which the Flash interaction is embedded. Third, you program the Flash interaction to post the results to an ASP page. Fourth, you make the ASP page receive the results and save them in the database.

Identifying the User FlashQuizIdentifyUser.htm The simplest way to identify the user is to use an HTML form to prompt for some kind of identification, such as an address You save this ID in a session variable so the browser knows who the user is. You should also pass this ID to Flash in order that your Flash code will know who the user is.

Session Variable Coding FlashQuizAskQuestions.asp You embed the Flash movie on an ASP page upon which you can write ASP code to receive and forward the data from the ID form. To save the user’s address in a session variable, the ASP code is: To pass this data to the embedded Flash movie object, you modify the object’s movie parameter as follows: ">

Posting the Quiz Results FlashQuiz.fla At the end of the Flash quiz, you provide the user with a button which, when clicked, posts the quiz results to the ASP page to which you will take the user upon completion of the quiz. The format of this ActionScript is as follows: report_btn.onRelease = function() { score = (iNumberCorrect / iNumberAsked) * 100; getURL(“FlashQuizStoreResults.asp", "_self", "POST"); }

Displaying the Data FlashQuizStoreResults.asp On the page to which Flash posts the data, you create a binding to Request(“score”) and to Request(“ _address”). Now you can use these bindings to display the data onscreen. For example: The result of the quiz was for At runtime, this writes a message in the form of: The result of the quiz was 33% for

Storing the Results in the DB FlashQuizStoreResults.asp To store the results in the database, you create a Dreamweaver connection to your Access database. On the page that will store the quiz results, you use the Application toolbar’s Command component to create the SQL command that will insert the data into the database.

Configuring the SQL Command FlashQuizStoreResults.asp

Viewing the Quiz Log FlashQuizViewHistory.asp On the ASP page that displays the quiz log, you use the DW application toolbar’s Recordset component to create a recordset consisting of the data in the Results table. Then you use the DW application toolbar’s Dynamic Table component to display the Recordset in a table onscreen.

Creating the Recordset FlashQuizViewHistory.asp

Creating the Dynamic Table FlashQuizViewHistory.asp