Viewing Form Results
|
|
|
- Marshall Craig
- 10 years ago
- Views:
Transcription
1 Form Tags XHTML
2 About Forms Forms allow you to collect information from visitors to your Web site. The example below is a typical tech suupport form for a visitor to ask a question. More complex forms can be used to place online orders, give online exams, make database updates, and more.
3 Viewing Form Results To see the results of a submitted form requires an program on the server to process the form. Though it is not within the scope of this course to cover server-side programming, we will describe a server-side program we can used to display the form results without doing any programming.
4 Forms and Form Variables Forms are used to collect user data and submit it to a CGI script or other program on the server capable of processing form data. In order for the form data to be processed correctly, the variable names in the form and in the CGI script must be identical. Form variables that do not have matching variables in the CGI script will be ignored during processing. The example below illustrates the variable names that will be used in the form examples in this lesson and then passed to a CGI script.
5 CGIecho and CGI Unless you are a programmer, you will need a prewritten CGI Script to handle form processing. A very popular choice for processing form data is CGIecho/CGI . The CGIecho script is used for testing a form's output, while CGI is used for sending the processed form data via . We will use CGIecho for testing all the examples and exercises in this lesson.
6 Formatting the Template File CGIecho/CGI requires a simple text file called a template to format form data. The template file contains both variables and free form text. Notice below that the text within the template is not restricted. Square brackets are placed around variable names "[variablename]", which the CGI script will replace with the variable values passed by the form. The name of the template file, "form.txt", can be any valid filename.
7 <form> Tag The <form> tag starts a form and the </form> tag ends it. All other tags associated with forms will not function unless they are inside <form></form> tags. Note that when editing forms, you often must hold down the "Shift" key while hitting "Reload"/"Refresh" in order to see your changes. On rare occasions, you will need to restart the browser to see edit changes to forms. If restarting the browser does not fix a form problem, then there is a mistake in the form itself. The form below is not complete; therefore the submit button does not function.
8 Method & Action Attributes The previous example would not submit information because there were no form attributes describing what to do on submit. The "method" attribute, which determines how your form data is sent, can have a value of "get" or "post," but "method="post"" is the most common. Next, the "action" attribute points to the script that will process the form. This example points to "cgiecho," which is a common testing tool for processing form . Submitting this form example results in a list of all the variable names supported by this test script.
9 Type Attribute With the form framework in place, we can now add functionality to the form. By default, the <input /> tag indicates a text input field. In the example below, the "type" attribute has been set to "text," but it is not required. The <input /> tag has no closing tag, thus the " /" (there is a space before the slash) is placed at the end of the tag to make it XHTML compliant.
10 Name Attribute The "name" attribute is used to define the variable name that will pass data. For the data in the variable name to be processed, it must match the variable name in the processing script exactly. Variable names are case sensitive.
11 Value Attribute The "value" attribute defines the default value for the input variable. If the value attribute is not used, a default value of "null" is assigned to the variable. The "size" attribute is used to set the length of the text input window, whereas the "maxlength" attribute defines how many characters of input will be accepted.
12 <input> Tag To submit form data, use the <input /> tag, with the "type" attribute set to "submit." You can control the text on the submit button by setting the "value" attribute.
13 Type Attribute To input a text field as a password, use the <input /> tag with the "type" attribute set to "password." The input field will display an "*" each time a key is pressed.
14 Type Attribute In any form, to give the user a way to reset form data to the defaults, use the <input /> tag with the "type" attribute set to "reset." You can control the text on the reset button by setting the "value" attribute.
15 Form Check Boxes To input data using check boxes, use the <input /> tag with the "type" attribute set to "checkbox." The variable names used with each check box must be the same as the ones used in the processing script, or the data will not be collected. By default, any check boxes that are checked submit a value of "on," while unchecked boxes send no value. Notice that only the values for the check boxes under "Kitchen" show up in the results, since they use variable names that are recognized by the test script ("data1" through "data5").
16 Value Attribute Add the "value" attribute to define the data sent when a check box is checked. In this example, all items send descriptive values instead of "on."
17 Checked Attribute By default, check boxes are unchecked. You can establish the check box default as checked by using the "checked" attribute.
18 Form Radio Buttons To collect data using radio buttons, use the <input /> tag with the "type" attribute set to "radio." The variable names used with radio buttons must be the same as the ones used in the processing script or the data will not be collected. By default, checked radio buttons submit a value of "on," while unchecked buttons send no value. Notice that all items under "Kitchen" use the same variable name (the same is true for the items under "Bathroom"). This is because a group of radio buttons permit the selection of only one choice from a list of options.
19 Value Attribute The "value" attribute can be added to the <input /> tag to define the data sent when a radio button is checked. In the example below, all items have descriptive values instead of "on."
20 Checked Attribute By default, radio buttons are unchecked. A radio button's default can be set as checked with the "checked" attribute, however, only one radio button per group should be checked (a group of radio buttons uses the same variable name). In this example, "Cups" is checked for the data1 variable and "Soap" is checked for the data2 variable.
21 Form Pull-Down Menu To input data using a pull down menu, use the <select> tag with the "name" attribute set to a variable used in the processing script. Next, define the items in the pull down menu using the <option> tag. The closing </option> tag is required in XHTML. By default, the top item in the menu is selected, but you can set the default to any item in the menu by using the "selected" attribute inside one of the <option> tags contained within a <select> tag.
22 Form Scrollable Menu To input data using a scrollable menu, add the "size" attribute to the previous example. With "size="4"," the first column doesn't scroll because it has only 4 items, the second scrolls since it has 5 items, and the third makes room for four items, but only displays two items on the menu. In this case, add the "selected" attribute if you wish to set a default value.
23 Form Text Areas To input data using a text area (aka "edit window"), use the <textarea> tag. Place any default text for the edit window between the opening and closing <textarea> </textarea> tags. The "rows" attribute defines how many text rows tall the edit window is, while the "cols" attribute defines how wide it is.
24 Form "Cancel" Button There is no defined "Cancel" feature in HTML, so we will improvise. To add a cancel button to any form, you make a separate form with the "method" attribute set to "get" and the "action" attribute pointing to an HTML file to be loaded when the cancel button is clicked. The cancel button is simply a submit button with the button text set to "Cancel Form."
25 Create a form using "mailto:" Using the "mailto:" protocol is the only way to send form information without a server script. A "mailto" compatible form is nothing more than a form where the "action" attribute points to the recipient of the mail. By default the "mailto" protocol sends data as one long line. This method of processing form data should be avoided because functionality is not consistent in all browsers.
26 <button> tag You can also use the <button> tag to create your own image buttons and your own graphics. <button type="submit" name="submit" value="submit"> <img src="images/continue.jpg" alt="continue" align="center" /> </button> <button type="reset" name="reset" value="reset"> <img src="images/reset.jpg" alt="reset" align="center" /> </button>
<option> eggs </option> <option> cheese </option> </select> </p> </form>
FORMS IN HTML A form is the usual way information is gotten from a browser to a server HTML has tags to create a collection of objects that implement this information gathering The objects are called widgets
07 Forms. 1 About Forms. 2 The FORM Tag. 1.1 Form Handlers
1 About Forms For a website to be successful, it is important to be able to get feedback from visitors to your site. This could be a request for information, general comments on your site or even a product
Further web design: HTML forms
Further web design: HTML forms Practical workbook Aims and Learning Objectives The aim of this document is to introduce HTML forms. By the end of this course you will be able to: use existing forms on
Upload Center Forms. Contents. Defining Forms 2. Form Options 5. Applying Forms 6. Processing The Data 6. Maxum Development Corp.
Contents Defining Forms 2 Form Options 5 Applying Forms 6 Processing The Data 6 Maxum Development Corp. Put simply, the Rumpus Upload Center allows you to collect information from people sending files.
By Glenn Fleishman. WebSpy. Form and function
Form and function The simplest and really the only method to get information from a visitor to a Web site is via an HTML form. Form tags appeared early in the HTML spec, and closely mirror or exactly duplicate
Inserting the Form Field In Dreamweaver 4, open a new or existing page. From the Insert menu choose Form.
Creating Forms in Dreamweaver Modified from the TRIO program at the University of Washington [URL: http://depts.washington.edu/trio/train/howto/page/dreamweaver/forms/index.shtml] Forms allow users to
Internet Technologies
QAFQAZ UNIVERSITY Computer Engineering Department Internet Technologies HTML Forms Dr. Abzetdin ADAMOV Chair of Computer Engineering Department [email protected] http://ce.qu.edu.az/~aadamov What are forms?
Using Form Tools (admin)
EUROPEAN COMMISSION DIRECTORATE-GENERAL INFORMATICS Directorate A - Corporate IT Solutions & Services Corporate Infrastructure Solutions for Information Systems (LUX) Using Form Tools (admin) Commission
CS412 Interactive Lab Creating a Simple Web Form
CS412 Interactive Lab Creating a Simple Web Form Introduction In this laboratory, we will create a simple web form using HTML. You have seen several examples of HTML pages and forms as you have worked
FORMS. Introduction. Form Basics
FORMS Introduction Forms are a way to gather information from people who visit your web site. Forms allow you to ask visitors for specific information or give them an opportunity to send feedback, questions,
Tutorial 6 Creating a Web Form. HTML and CSS 6 TH EDITION
Tutorial 6 Creating a Web Form HTML and CSS 6 TH EDITION Objectives Explore how Web forms interact with Web servers Create form elements Create field sets and legends Create input boxes and form labels
HTML Forms. Pat Morin COMP 2405
HTML Forms Pat Morin COMP 2405 HTML Forms An HTML form is a section of a document containing normal content plus some controls Checkboxes, radio buttons, menus, text fields, etc Every form in a document
2- Forms and JavaScript Course: Developing web- based applica<ons
2- Forms and JavaScript Course: Cris*na Puente, Rafael Palacios 2010- 1 Crea*ng forms Forms An HTML form is a special section of a document which gathers the usual content plus codes, special elements
Web Design and Development ACS-1809. Chapter 13. Using Forms 11/30/2015 1
Web Design and Development ACS-1809 Chapter 13 Using Forms 11/30/2015 1 Chapter 13: Employing Forms Understand the concept and uses of forms in web pages Create a basic form Validate the form content 11/30/2015
Introduction to XHTML. 2010, Robert K. Moniot 1
Chapter 4 Introduction to XHTML 2010, Robert K. Moniot 1 OBJECTIVES In this chapter, you will learn: Characteristics of XHTML vs. older HTML. How to write XHTML to create web pages: Controlling document
HTML Form Widgets. Review: HTML Forms. Review: CGI Programs
HTML Form Widgets Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back to the web server Forms allow web servers to generate
HTML Forms and CONTROLS
HTML Forms and CONTROLS Web forms also called Fill-out Forms, let a user return information to a web server for some action. The processing of incoming data is handled by a script or program written in
XHTML Forms. Form syntax. Selection widgets. Submission method. Submission action. Radio buttons
XHTML Forms Web forms, much like the analogous paper forms, allow the user to provide input. This input is typically sent to a server for processing. Forms can be used to submit data (e.g., placing an
HTML Tables. IT 3203 Introduction to Web Development
IT 3203 Introduction to Web Development Tables and Forms September 3 HTML Tables Tables are your friend: Data in rows and columns Positioning of information (But you should use style sheets for this) Slicing
Configuring iplanet 6.0 Web Server For SSL and non-ssl Redirect
Introduction Configuring iplanet 6.0 Web Server For SSL and non-ssl Redirect This document describes the process for configuring an iplanet web server for the following situation: Require that clients
FORM-ORIENTED DATA ENTRY
FORM-ORIENTED DATA ENTRY Using form to inquire and collect information from users has been a common practice in modern web page design. Many Web sites used form-oriented input to request customers opinions
Dreamweaver Tutorials Creating a Web Contact Form
Dreamweaver Tutorials This tutorial will explain how to create an online contact form. There are two pages involved: the form and the confirmation page. When a user presses the submit button on the form,
Designing and Implementing Forms 34
C H A P T E R 34 Designing and Implementing Forms 34 You can add forms to your site to collect information from site visitors; for example, to survey potential customers, conduct credit-card transactions,
CGI Programming. What is CGI?
CGI Programming What is CGI? Common Gateway Interface A means of running an executable program via the Web. CGI is not a Perl-specific concept. Almost any language can produce CGI programs even C++ (gasp!!)
HOW TO CREATE AN HTML5 JEOPARDY- STYLE GAME IN CAPTIVATE
HOW TO CREATE AN HTML5 JEOPARDY- STYLE GAME IN CAPTIVATE This document describes the steps required to create an HTML5 Jeopardy- style game using an Adobe Captivate 7 template. The document is split into
understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver
LESSON 3: ADDING IMAGE MAPS, ANIMATION, AND FORMS CREATING AN IMAGE MAP OBJECTIVES By the end of this part of the lesson you will: understand how image maps can enhance a design and make a site more interactive
PDG Software. Site Design Guide
PDG Software Site Design Guide PDG Software, Inc. 1751 Montreal Circle, Suite B Tucker, Georgia 30084-6802 Copyright 1998-2007 PDG Software, Inc.; All rights reserved. PDG Software, Inc. ("PDG Software")
Form And List. SuperUsers. Configuring Moderation & Feedback Management Setti. Troubleshooting: Feedback Doesn't Send
5. At Repeat Submission Filter, select the type of filtering used to limit repeat submissions by the same user. The following options are available: No Filtering: Skip to Step 7. DotNetNuke User ID: Do
Cognos 10 Getting Started with Internet Explorer and Windows 7
Browser/Windows Settings There are several Internet Explorer browser settings required for running reports in Cognos. This document will describe specifically how to set those in Internet Explorer 9 and
SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved.
1 SerialMailer Manual For SerialMailer 7.2 Copyright 2010-2011 Falko Axmann. All rights reserved. 2 Contents 1 Getting Started 4 1.1 Configuring SerialMailer 4 1.2 Your First Serial Mail 7 1.2.1 Database
Instructions For Opening UHA Encrypted Email
Receiving Encrypted Email You have received a secure, encrypted message from UHA. The message will contain the following notice and an attachment named SecureMessageAtt.hml. The attachment is shown circled
CREATING WEB FORMS WEB and FORMS FRAMES AND
CREATING CREATING WEB FORMS WEB and FORMS FRAMES AND FRAMES USING Using HTML HTML Creating Web Forms and Frames 1. What is a Web Form 2. What is a CGI Script File 3. Initiating the HTML File 4. Composing
Configuring E-Mail Notifications for Cisco Unified MeetingPlace Express
CHAPTER 14 Configuring E-Mail Notifications for Cisco Unified MeetingPlace Express Revised: October 18, 2006, Cisco Unified MeetingPlace Express generates e-mail notifications and sends them to the meeting
At the end of this lesson, you will be able to create a Request Set to run all of your monthly statements and detail reports at one time.
Request Set Creation You can use a Request Set to run all of your monthly reports at one time, such as your Department Statements, Project Statements and RIT Account Analysis reports. A Request Set allows
EMAIL EDITOR & SITE TAGS
Feature Overview & Tutorial EMAIL EDITOR & SITE TAGS Create & Assign HTML Email Templates Overview Email Editor & Site Tags The Email Editor gives you the ability to use the email templates we provide,
Setting up SMTP in Talis Decisions
Decisions Talis Library Management Suite Setting up SMTP in Talis Decisions This document describes how to configure SMTP (Single Mail Transfer Protocol) in Talis Decisions. It is intended for system administrators
Salesforce Integration
Salesforce Integration 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.
In order for the form to process and send correctly the follow objects must be in the form tag.
Creating Forms Creating an email form within the dotcms platform, all the HTML for the form must be in the Body field of a Content Structure. All names are case sensitive. In order for the form to process
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.
Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET
Print Audit 6 - SQL Server 2005 Express Edition
Print Audit 6 - SQL Server 2005 Express Edition Summary This is a step-by-step guide to install SQL Server 2005 Express Edition to use as a database for Print Audit 6. Pre-Requisites There are a few pre-requisites
Securepoint Security Systems
HowTo: Configuration of the spam filter Securepoint Security Systems Version 2007nx Release 3 Contents 1 Configuration of the spam filter with the Securepoint Security Manager... 3 2 Spam filter configuration
XHTML BASICS. Institute of Finance Management CIT Department Herman Mandari
XHTML BASICS Institute of Finance Management CIT Department Herman Mandari HTML Styles Introduces CSS to HTML The main purposes is to provide a common way to style all HTML elements Examples
To create a new Campaign, click into the Marketing module. Then, click on Campaigns button.
Marketing Campaigns Use campaigns to send an email blast out to a list of contacts in the system. Create a new Campaign To create a new Campaign, click into the Marketing module. Then, click on Campaigns
Now that we have discussed some PHP background
WWLash02 6/14/02 3:20 PM Page 18 CHAPTER TWO USING VARIABLES Now that we have discussed some PHP background information and learned how to create and publish basic PHP scripts, let s explore how to use
Viral Mail Profits. Mailing to the Max! User's Guide
Viral Mail Profits Mailing to the Max! User's Guide Welcome Welcome to ViralMailProfits where you can manage all your emailing systems from one place! This is what ViralMailProfits will do for you: Store
An Introduction To The Web File Manager
An Introduction To The Web File Manager When clients need to use a Web browser to access your FTP site, use the Web File Manager to provide a more reliable, consistent, and inviting interface. Popular
emarketing Manual- Creating a New Email
emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a
COLLABORATION NAVIGATING CMiC
Reference Guide covers the following items: How to login Launching applications and their typical action buttons Querying & filtering log views Export log views to Excel User Profile Update info / Change
Creating a User Profile for Outlook 2013
Creating a User Profile for Outlook 2013 This document tells you how to create a user profile for Outlook 2013 on your computer (also known as the Outlook client). This is necessary, for example, when
1&1 SEO Tool Expert Call
1&1 SEO Tool Expert Call Introduction Search Engine Optimization (SEO) is one of the most effective marketing tactics to generate leads and sales for your business website. Here are some few important
How To Encrypt a File using Windows Explorer and WinZip. For Use With All PII Data
How To Encrypt a File using Windows Explorer and WinZip For Use With All PII Data As an employee or a contractor, you share in the responsibility for protecting the privacy of individuals whose information
Lesson Review Answers
Lesson Review Answers-1 Lesson Review Answers Lesson 1 Review 1. User-friendly Web page interfaces, such as a pleasing layout and easy navigation, are considered what type of issues? Front-end issues.
JavaScript and Dreamweaver Examples
JavaScript and Dreamweaver Examples CSC 103 October 15, 2007 Overview The World is Flat discussion JavaScript Examples Using Dreamweaver HTML in Dreamweaver JavaScript Homework 3 (due Friday) 1 JavaScript
Short notes on webpage programming languages
Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of
How to Schedule Report Execution and Mailing
SAP Business One How-To Guide PUBLIC How to Schedule Report Execution and Mailing Release Family 8.8 Applicable Releases: SAP Business One 8.81 PL10 and PL11 SAP Business One 8.82 PL01 and later All Countries
SAM Server Utility User s Guide
SAM Server Utility User s Guide Updated May 2012 Copyright 2010, 2012 by Scholastic Inc. All rights reserved. Published by Scholastic Inc. PDF0157 (PDF) SCHOLASTIC, READ 180, SYSTEM 44, SCHOLASTIC EXPERT
NewsletterAdmin 2.4 Setup Manual
NewsletterAdmin 2.4 Setup Manual Updated: 7/22/2011 Contact: [email protected] Contents Overview... 2 What's New in NewsletterAdmin 2.4... 2 Before You Begin... 2 Testing and Production...
Empowered by Innovation. Setting Up and Using Fax Mail. P/N 1770087 July 2006 Printed in U.S.A.
Empowered by Innovation Setting Up and Using Fax Mail P/N 1770087 July 2006 Printed in U.S.A. This manual has been developed by NEC Unified Solutions, Inc. It is intended for the use of its customers and
User Guide for Kelani Mail
User Guide for Kelani Mail Table of Contents Log in to Kelani Mail 1 Using Kelani Mail 1 Changing Password 2 Using Mail Application 3 Using email system folders 3 Managing Your Mail 4 Using your Junk folder
For paid computer support call 604-518-6695 http://www.netdigix.com [email protected]
Setting up your vpn connection on windows 2000 or XP in continuation from installing x.509 certificate on windows (please do not continue if you have not installed your x.509 certificate): Instructions
WebCUR ListServ. ListServ Help Manual
WebCUR ListServ ListServ Help Manual WebCUR-ListServ Help Manual Table of Contents System Overview... 2 Getting Started... 2 Send A List Message... 4 Send A Web Page... 5 Send A List Invitation... 6 Manage
Amicus Link Guide: Outlook/Exchange E-mail
Amicus Link Guide: Outlook/Exchange E-mail Applies to: Amicus Premium 2015 Synchronize your Amicus and Outlook e-mail. Choose a client-side link with your local Microsoft Outlook or a Server-side link
Composite.Community.Newsletter - User Guide
Composite.Community.Newsletter - User Guide Composite 2015-11-09 Composite A/S Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.composite.net Contents 1 INTRODUCTION... 4 1.1 Who Should Read This
Install MS SQL Server 2012 Express Edition
Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other
Linklok URL TM V2.90
Linklok URLTM V2.90 Linklok URL Manual Copyright 2003-2015 Vibralogix. All rights reserved. This document is provided by Vibralogix for informational purposes only to licensed users of the Linklok product
Google Trusted Stores Setup in Magento
Google Trusted Stores Setup in Magento Google Trusted Stores is a free badging program that can improve your conversion rate and average order size by reassuring potential customers you offer a great shopping
How to Make a Working Contact Form for your Website in Dreamweaver CS3
How to Make a Working Contact Form for your Website in Dreamweaver CS3 Killer Contact Forms Dreamweaver Spot With this E-Book you will be armed with everything you need to get a Contact Form up and running
Working with forms in PHP
2002-6-29 Synopsis In this tutorial, you will learn how to use forms with PHP. Page 1 Forms and PHP One of the most popular ways to make a web site interactive is the use of forms. With forms you can have
MyFaxCentral User Administration Guide
faxing simplified. anytime. anywhere. MyFaxCentral User Administration Guide www.myfax.com MyFaxCentral Common Controls...1 Navigation Controls...1 Customize View...1 MyFaxCentral User Administration...2
STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.
STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter
InPost UK Limited GeoWidget Integration Guide Version 1.1
InPost UK Limited GeoWidget Integration Guide Version 1.1 Contents 1.0. Introduction... 3 1.0.1. Using this Document... 3 1.0.1.1. Document Purpose... 3 1.0.1.2. Intended Audience... 3 1.0.2. Background...
Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 22 Ref: GC349_v1.1
Web Hosting Training Guide Safari version Doc Ref: GC349_v1.1 Author: Glow Team Page 1 of 22 Ref: GC349_v1.1 Contents Introduction... 3 What is the Glow Web Hosting service?... 3 Why use the Glow Web Hosting
FACILITIES INVENTORY MANAGEMENT SYSTEM:
FACILITIES INVENTORY MANAGEMENT SYSTEM: FM:INTERACT USER S GUIDE University of North Texas Office of Facilities Management and Construction P.O. Box 311040 Denton, TX 76203-1040 TEL: (940)565.4974 FAX:
Making a Web Page with Microsoft Publisher 2003
Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to
Configuring Alarm Emails From The Field Logger DL1080/DL1081 Using SMTP2GO As The Outgoing Server
Configuring Alarm Emails From The Field Logger DL1080/DL1081 Using SMTP2GO As The Outgoing Server This document describes how to setup a mail service in the cloud that can be easily accessed by the Field
Skipjack Merchant User Guide. Quick Guide. (a supplement to the Merchant User Guide)
Skipjack Merchant User Guide Quick Guide (a supplement to the Merchant User Guide) COPYRIGHT INFORMATION Evolve Adaptive Technology and Skipjack Financial Services are registered trademarks of the Bradley-Madison
SQL Server Setup for Assistant/Pro applications Compliance Information Systems
SQL Server Setup for Assistant/Pro applications Compliance Information Systems The following document covers the process of setting up the SQL Server databases for the Assistant/PRO software products form
Build an ArcGIS Online Application
Build an ArcGIS Online Application Sign into ArcGIS Online for Maryland 1. Open a web browser 2. Go to URL http://maryland.maps.arcgis.com/ 3. Click Sign In in the upper right corner of the web page 4.
Weston Public Schools Virtual Desktop Access Instructions
Instructions for connecting to the Weston Schools Virtual Desktop Environment Notes: You will have to have administrator permission on your computer in order to install a VMWare Client application which
Designing for Dynamic Content
Designing for Dynamic Content Course Code (WEB1005M) James Todd Web Design BA (Hons) Summary This report will give a step-by-step account of the relevant processes that have been adopted during the construction
Chapter 15: Forms. User Guide. 1 P a g e
User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form
91.527 - Human Computer Interaction Final Project Tutorial. Hardware Inventory Management System (HIMS) By M. Michael Nourai
91.527 - Human Computer Interaction Final Project Tutorial Hardware Inventory Management System (HIMS) By Table of Contents Introduction... 3 Running HIMS... 3 Successful Login to HIMS... 4 HIMS Main Screen...
FRONTPAGE FORMS... ... ...
tro FRONTPAGE FORMS........................................ CREATE A FORM.................................................................................. 1. Open your web and create a new page. 2. Click
Configure Cisco Emergency Responder Disaster Recovery System
Configure Cisco Emergency Responder Disaster Recovery System Disaster Recovery System overview, page 1 Backup and restore procedures, page 2 Supported features and components, page 4 System requirements,
RoboMail Mass Mail Software
RoboMail Mass Mail Software RoboMail is a comprehensive mass mail software, which has a built-in e-mail server to send out e-mail without using ISP's server. You can prepare personalized e-mail easily.
Process Document Campus Community: Create Communication Template. Document Generation Date 7/8/2009 Last Changed by Status
Document Generation Date 7/8/2009 Last Changed by Status Final System Office Create Communication Template Concept If you frequently send the same Message Center communication to selected students, you
Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7
Microsoft Outlook with Initial Setup of Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access
Website Planning Checklist
Website Planning Checklist The following checklist will help clarify your needs and goals when creating a website you ll be surprised at how many decisions must be made before any production begins! Even
Changing Passwords in Cisco Unity 8.x
CHAPTER 9 Changing Passwords in Cisco Unity 8.x This chapter contains the following sections: Changing Passwords for the Cisco Unity 8.x Service Accounts (Without Failover), page 9-1 Changing Passwords
Deleted Cookies Cause Online Banking Users to be Asked For Secure Code at Each Login
Deleted Cookies Cause Online Banking Users to be Asked For Secure Code at Each Login Internet Explorer Version When you first access Online Banking from a new computer or new Web browser, you are asked
BC OnLine. Configuring Your Web Browser for BC OnLine. Last Updated January 27, 2016
BC OnLine Configuring Your Web Browser for BC OnLine Last Updated January 27, 2016 Copyright Copyright 2016 Province of British Columbia. All rights reserved. This user s guide is for users of the BC OnLine
JAVASCRIPT AND COOKIES
JAVASCRIPT AND COOKIES http://www.tutorialspoint.com/javascript/javascript_cookies.htm Copyright tutorialspoint.com What are Cookies? Web Browsers and Servers use HTTP protocol to communicate and HTTP
Configuring Thunderbird for Flinders Mail at home.
Configuring Thunderbird for Flinders Mail at home. Downloading Thunderbird can be downloaded from the Mozilla web site located at http://www.mozilla.org/download.html This web site also contains links
How To Filter Spam With Thunderbird On A Pc Or Macintosh (Sailor) On A Macintosh Or Macbook) On Pc Or Ipa (Macintosh) On An Ipa Or Ipam (Soulbird) On Windows
Instructions for Filtering Spam with Mozilla Thunderbird When an Email is processed through ISOMEDIA s SpamCatcher, the message header is tagged with asterisks ( * ) indicating the likelihood that the
