How to Make a Working Contact Form for your Website in Dreamweaver CS3

Size: px
Start display at page:

Download "How to Make a Working Contact Form for your Website in Dreamweaver CS3"

Transcription

1 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 on your website in no time at all using either PHP or ASP. You will also learn how to style your web form using CSS.

2 Table of Contents Introduction 3 Why is a Contact Form Important? 3 1. Setting up Your Website 4 Choosing a Web Host that Allows 3 rd Party Scripts 4 Connect to Your Website Using Dreamweaver CS Creating the Form 8 Creating the Basic Form 8 3. Apply Some Style Using CSS Create A PHP Script to Handle the Form Data Create an ASP Script to Handle the Form Data Additional Tasks Apply Validation to the Form Further Reading and Content (The End Stuff) 18 Page 2

3 Introduction Lessons Learn The purpose of this Guide is to provide you with some techniques that you can use on your website to create a working contact form, whether you need one using PHP or ASP. When I was first starting out in the Web Design industry I would quite often search the web to find someone that could write a simple explanation and tutorial for what I was looking for. Now creating Contact Forms does not have to be as difficult as many people make out on the web. I have looked at a number of articles related to contact forms on the internet and have never really been that impressed with what I have read or tutorials I have done, hence my reason for creating the E-Book. With this E-Book you WILL be armed with all the necessary ingredients to get a WORKING Contact Form up on your website, even if you have little knowledge of PHP, ASP, CSS, HTML or any other acronym that people may throw at you, in no time at all. Let s face it you do not want to be missing out on prospective clients because they think that your product or service is great but they can t get in contact with you! Contact forms should be simple and require minimal input from users. Don t expect users to fill in 20 fields of personal data. They simply won t do it. Keep them simple and easy to fill out and you will have another avenue for people to get in contact with you and in turn may become a client or prospective buyer for your product. I have had a great response from readers at Dreamweaver Spot about these tutorials so I hope you will find this E-Book both useful and easy to follow and understand. This can be used as a reference if needed on projects that you are undertaking. Page 3

4 1. Setting up your Website The key to any good website is the Web Host. From my experience and especially from the comments of readers at Dreamweaver Spot there are a few hosts around that do not like you running any third party scripts like this on their Servers. I use a Web Host called Blue Host and I would highly recommend. Here are some of the features that they offer for $6.95 / month 1,500 Gigabyte Hosting Space Host UNLIMITED Domains!!! 2,500 POP / IMAP Accounts 15,000 GIGS of Transfer SSH (Secure Shell), SSL, FTP, Stats CGI, Ruby (RoR), Perl, PHP, MySQL 2000/2002 Front Page Extensions Free Domain Forever! Free Site Builder 24/7 Superb/Responsive Sales/Support Now I can tell you that the PHP version of the Contact Form works a treat with Blue Host. Once you have created an account with them you can log into CPanel then find the Files Section: You then can click on FTP Accounts and create an FTP Account so that we can set Dreamweaver up using FTP to upload your website files. I like to create a new account here that is different to the default one. Page 4

5 Now if you already have a host then what you need to know is the account the enables you FTP Access to your files. If you don t know then their Support Team should be able to help you out or even their FAQ s. Now that we have got all that sorted we can go ahead and open up Dreamweaver CS3. If you don t have a copy of this then you can just download a trial version and that will get you through. Download a trial version from here. Once you have Dreamweaver open go to the top menu and select Site > New Site Page 5

6 Fill in the fields above and then click NEXT, you will then be presented with these options Depending on your host and what server technology they provide will determine what you will choose here. For the case of this example I will chose PHP MySQL. But if your host supports ASP then there is an option for that as well. The next page you will be presented with options on how you would like to work on your files during development. Choose Edit Locally, then upload to remote testing server. Browse to a location that you would like to store your local files and click NEXT Next we will be asked how we want to connect to the testing server. From the drop down list select FTP, and fill in the FTP Address, the Folder Location (the home folder of your website), for most users it will be public_html, FTP Login and FTP Account Password. Page 6

7 Next Enter the URL of your Website eg: then Click Next and leave the next screen as is and Click NEXT again. Now our website is set up in Dreamweaver CS3. On the right hand side in Dreamweaver under the Heading of FILES you should see something similar to this. Congratulations you have now set up your first site in Dreamweaver CS3!!! Page 7

8 2. Create the Basic Form Ok First things First lets create a Form for your visitor to fill out. Begin by inserting a form and the fields you would like your visitors to fill out onto the page. For this example I am going to create a New Page, but you can easily add this to an existing page if you already have one in mind for the form to be placed on. 1. In Dreamweaver, choose File > New The New Document Dialog Box appears. 2. In the Blank Document list, choose HTML, then click Create to create a new HTML document. 3. In the Title text field in the Document toolbar, enter Contact Form to add a title to your document. 4. Choose File > Save, then save the document in your local site folder. Name it ContactForm.htm. 5. Next we are going to Insert a Form onto the page, Choose Insert > Form then Form from the Flyout Menu. A Form dialog box will then open. In the Action text box type in Formto .php (this is the file you extracted to the root of your website earlier). Change the Method to POST and then in the NAME text box type in ContactForm. <form name="contactform" method="post" action="formto .php"> 6. Next step is to place the form objects onto the page (the information we would like to collect). In this example I have placed a text box for Name and Address, and also a Text Area for Comments. To do this click inside your form object and then from the top menu select Insert > Form > Label. From the Code Window click in between the LABEL Tags and type in Name:. Next from the top menu again select Insert > Form > Text Field. Name the Text field name from the properties box at the bottom. Repeat those steps and add another Label and Text Field and name it . Page 8

9 7. Add another Label and type in Comments. Then add a Text Area, go to Inset > Form > Text Area in the top menu. Name the Text Area comments from the Properties box at the bottom and give the Character Width a value of 50 and the Number of Lines a value of Add a Button. From the top menu select Insert > Form > Button. Your Form should now look like this: (note I have put each element on a different line to help with the usability). <form name="contactform" method="post" action="formto .php"> <label>name:</label><br /> <input name="name" type="text" id="name" /> <br /> <label> </label><br /> <input name=" " type="text" id=" " /> <br /> <label>comments:</label><br /> <textarea name="comments" cols="50" rows="10" id="comments"></textarea> <input name="submit" type="submit" id="submit" value="submit" /> </form> Now that we have a basic form let s add a bit of style to it. The next Section is devoted to Using CSS to style your web form. Page 9

10 3. Using CSS to Style your Form The Fieldset element is used to group related blocks of information and is used here to group the form information. The Legend is used as a title for the form My Contact Form. 1. Now we will use some CSS to add some style. Open up your style sheet or if you haven t created one then create one. Add the following code to it to style the FIELDSET element. fieldset{ border:1px solid #778D1D; margin:1em 0; padding:1em; } Then add the following to style the LEGEND Element. legend{ font-family: "Trebuchet MS"; } 2. The next thing we will do is add some color and style to the text boxes and text area. input, textarea{ border:1px solid #778D1D; background-color:#ecf4ca; } Page 10

11 And that is all there is to it. As you can see with 2 minutes of work you can improve the look and feel of those standard web forms that you still see on websites today. Take it a Step Further... As an added example you could also take it a step further and create two Fieldsets and separate the form even further which is very handy when you have a big and complicated form with different sections. All I have done here is put the Comments Text Area and Label inside an additional Fieldset. Page 11

12 4. Editing the FormTo .php File Now that we have got a nice looking Form placed on our page we need to get the script that will handle the form input up and running. This is the Simple Step and it amazes me that people on the web make this out to be more difficult than it really is. Download this ZIP file that contains the FormTo ,php file. Extract the file and then place it in the same location as the Contact Form that you created in the last section. Only A Couple of Changes to Make... Now we need to edit a couple of lines in the Formto .php file. Open the file in Dreamweaver. The first line you need to edit is the line that starts with $my_ . Change the address to the address you want the s to be sent to. The other line that you may wish to change is this one: This is where the visitor will be directed after they have pressed the SUBMIT button. If you have a page that you like to direct them to then place the location of the file in there, or simply leave it blank and they will get a thank you message on the same page. Page 12

13 5. Creating a Contact Form Using ASP In Dreamweaver, create a new ASP Page. File > New > Blank Page > ASP VBscript. Save this page as contact_us.asp and into the same location as the Contact Form Page you created earlier. Copy the ASP Code Below and Paste it in between the <body> tags of the ASP Page. <% Const cdosendusingmethod = _ " Const cdosendusingport = 2 Const cdosmtpserver = _ " Const cdosmtpserverport = _ " Const cdosmtpconnectiontimeout = _ " Const cdosmtpauthenticate = _ " Const cdobasic = 1 Const cdosendusername = _ " Const cdosendpassword = _ " Dim objconfig ' As CDO.Configuration Dim objmessage ' As CDO.Message Dim Fields ' As ADODB.Fields Dim Name, , Comments Name = Request.Form("name") = Request.Form(" ") Comments = Request.Form("comments") ' Get a handle on the config object and it's fields Set objconfig = Server.CreateObject("CDO.Configuration") Set Fields = objconfig.fields ' Set config fields we care about With Fields.Item(cdoSendUsingMethod) = cdosendusingport.item(cdosmtpserver) = "< Enter SMTP Server Name Here >".Item(cdoSMTPServerPort) = 25.Item(cdoSMTPConnectionTimeout) = 10.Item(cdoSMTPAuthenticate) = cdobasic.item(cdosendusername) = "< Enter SMTP Server Username >".Item(cdoSendPassword) = "< Enter SMTP Server Password >" End With.Update Page 13

14 Set objmessage = Server.CreateObject("CDO.Message") Set objmessage.configuration = objconfig With objmessage.to = "< Address That The Will Be Sent To >".From = "< Address That The Will Be Sent FROM >".Subject = "SMTP Relay Test".TextBody = "SMTP Relay Test " & Now().Send End With Set Fields = Nothing Set objmessage = Nothing Set objconfig = Nothing %> Now what you will need to do is change the values of the lines that I have highlighted in RED. Enter the name of your SMTP Server (eg: mail.yourdomain.com), SMTP Username (if your server requires authentication, which most do) and also your SMTP Password. Just Check Your POP3 Account Settings and you will find the details there if you do not know them. The Next Values to change are the Address that the will be sent to and also the Address that the will be sent from..to = "< Address to Send To >".From = "< Address To Be Sent From >".Subject = "SMTP Relay Test".TextBody = "SMTP Relay Test " & Now() Now I want to change the text body to display the values that the visitor entered into the form, so I am going to add those variables into the Text Body Section..TextBody = "SMTP Relay Test " & Now() & vbcrlf & "Surname: " & Surname & vbcrlf & "First Name: " & FirstName & vbcrlf & " " & & vbcrlf & "Message: " & Message The last step you will need to do is open your Contact Form and change the action property of the form so that it sends the form data to the right script eg: <form name="contactform" method="post" action="contact_us.asp"> Page 14

15 Additional Tasks 1. Add a Thank you Message to the Body of the contact_us.asp Page 2. If you need or want to add some more fields to the form then you will need to do the following: Find This Section of Code in the contact_us.asp page and add the value (let s say we wanted phone number) in a couple of spots. On the line that starts with DIM and their also needs to be an entry in the section below that. Dim FirstName, Surname, , Website, Message, PhoneNumber FirstName = Request.Form("FirstName") Surname = Request.Form("Surname") = Request.Form(" ") Website = Request.Form("Website") Message = Request.Form("Message") PhoneNumber = Request.Form("PhoneNumber") The Value that is inside the () needs to be the same as the name of the Text Box on the Form Page and is Case Sensitive. So phonenumber is different to PhoneNumber. You will then need to edit this section to make that new field appear in the that is sent..textbody = "SMTP Relay Test " & Now() & vbcrlf & "Surname: " & Surname & vbcrlf & "First Name: " & FirstName & vbcrlf & " " & & vbcrlf & "Message: " & Message & "Phone Number: " & PhoneNumber Page 15

16 7. Form Validation in Dreamweaver In Dreamweaver CS3 there is a very easy way to apply form field validation let me show you. Apply the Validation To The Form Elements Ok open your form in Dreamweaver click on the Submit Button. Now on the Top Menu Select Window > Behaviours you will now notice on the right hand side under the TAG Heading that the Behaviours Tab is now active. Click the Plus Icon and then Select Validate Form. You will then be presented with the Validate Form Dialog Box. Here you will find all the Fields that we can apply Validation to. For this example I went through and marked all the fields required, and also for the text box I only want to accept and address so I selected the Radio Button next to the Accept Section. Page 16

17 After you have applied the Validation that you require, Save the Document and test it by not entering in anything into the fields. You should get a pop up box like this. There we have it, you can now apply form validation to your Contact Forms. Page 17

18 More Great Content For more great content on Web Design, Blog Design, CSS Tutorials, Dreamweaver Tutorials then visit Daniel s Blog at Version You are currently reading Version 1.0 of this E-Book that was published in May There will continue to be updates to this Book as the need arises so make sure you have the latest version. Page 18

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

Domain Name. Domain Registrar. Web Site cpanel. www..com. www..net. www..biz URL: Username: Password: www.mydomain.com/cpanel. Username: Password:

Domain Name. Domain Registrar. Web Site cpanel. www..com. www..net. www..biz URL: Username: Password: www.mydomain.com/cpanel. Username: Password: 314 Main Street Onalaska, WI 54650 608-787-8887 Why Use The Idea Center for Hosting Your Web Site? Yes, there are cheaper (even free) alternatives out there. What we will offer you is a reliable service,

More information

Dreamweaver Tutorials Creating a Web Contact Form

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,

More information

WHY USE ILLUMIN8 MARKETING FOR HOSTING YOUR WEB SITE?

WHY USE ILLUMIN8 MARKETING FOR HOSTING YOUR WEB SITE? QUESTIONS OR COMMENTS? email info@illumin8marketing.com or call 608-796-1990 WHY USE ILLUMIN8 MARKETING FOR HOSTING YOUR WEB SITE? Yes, there are cheaper (even free) alternatives out there. What we will

More information

Further web design: HTML forms

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

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0)

shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) shweclassifieds v 3.3 Php Classifieds Script (Joomla Extension) User Manual (Revision 2.0) Contents Installation Procedure... 4 What is in the zip file?... 4 Installing from Extension Manager... 6 Updating

More information

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server page of 4 oit UMass Office of Information Technologies Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server This includes Web sites on: https://webadmin.oit.umass.edu/~user http://people.umass.edu/

More information

A send-a-friend application with ASP Smart Mailer

A send-a-friend application with ASP Smart Mailer A send-a-friend application with ASP Smart Mailer Every site likes more visitors. One of the ways that big sites do this is using a simple form that allows people to send their friends a quick email about

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version

Site Store Pro. INSTALLATION GUIDE WPCartPro Wordpress Plugin Version Site Store Pro INSTALLATION GUIDE WPCartPro Wordpress Plugin Version WPCARTPRO INTRODUCTION 2 SYSTEM REQUIREMENTS 4 DOWNLOAD YOUR WPCARTPRO VERSION 5 EXTRACT THE FOLDERS FROM THE ZIP FILE TO A DIRECTORY

More information

ITP 101 Project 3 - Dreamweaver

ITP 101 Project 3 - Dreamweaver ITP 101 Project 3 - Dreamweaver Project Objectives You will also learn how to make a website outlining your company s products, location, and contact info. Project Details USC provides its students with

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

Working with forms in PHP

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

More information

Inserting the Form Field In Dreamweaver 4, open a new or existing page. From the Insert menu choose Form.

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

More information

Setting Up Dreamweaver for FTP and Site Management

Setting Up Dreamweaver for FTP and Site Management 518 442-3608 Setting Up Dreamweaver for FTP and Site Management This document explains how to set up Dreamweaver CS5.5 so that you can transfer your files to a hosting server. The information is applicable

More information

Reseller Manual. version 2.0-r1

Reseller Manual. version 2.0-r1 Reseller Manual version 2.0-r1 Contents 1 Definition of Terms 3 2 Sections of the Reseller Interface 3 3 General 4 3.1 Overview.............................. 4 3.2 Change Password.........................

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

www.nuvox.net, enter the administrator user name and password for that domain.

www.nuvox.net, enter the administrator user name and password for that domain. Page 1 of 7 Cute_FTP Server Names and Authentication Before connecting to an FTP site you need three pieces of information: the server name or the site you are connecting to and a user name and password.

More information

HTML Forms. Pat Morin COMP 2405

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

More information

MailEnable Connector for Microsoft Outlook

MailEnable Connector for Microsoft Outlook MailEnable Connector for Microsoft Outlook Version 2.23 This guide describes the installation and functionality of the MailEnable Connector for Microsoft Outlook. Features The MailEnable Connector for

More information

Lab 1: Create a Personal Homepage

Lab 1: Create a Personal Homepage Objectives: Lab 1: Create a Personal Homepage Understand the basics of HTML Create a personal website, if you do not have one Learn how to submit your assignments Preparation 1. Create a folder with the

More information

FireBLAST Email Marketing Solution v2

FireBLAST Email Marketing Solution v2 Installation Guide WELCOME to fireblast, one of the Industry s leading Email Marketing Software Solutions for your business. Whether you are creating a small email campaign, or you are looking to upgrade

More information

Getting Started with Dynamic Web Sites

Getting Started with Dynamic Web Sites PHP Tutorial 1 Getting Started with Dynamic Web Sites Setting Up Your Computer To follow this tutorial, you ll need to have PHP, MySQL and a Web server up and running on your computer. This will be your

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

USING MS OUTLOOK. Microsoft Outlook

USING MS OUTLOOK. Microsoft Outlook USING MS OUTLOOK In this tutorial you will learn how to use Microsoft Outlook with your EmailHosting.com account. You will learn how to setup an IMAP account, and also how to move your emails and contacts

More information

Chapter 28: Expanding Web Studio

Chapter 28: Expanding Web Studio CHAPTER 25 - SAVING WEB SITES TO THE INTERNET Having successfully completed your Web site you are now ready to save (or post, or upload, or ftp) your Web site to the Internet. Web Studio has three ways

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next.

5. At the Windows Component panel, select the Internet Information Services (IIS) checkbox, and then hit Next. Installing IIS on Windows XP 1. Start 2. Go to Control Panel 3. Go to Add or RemovePrograms 4. Go to Add/Remove Windows Components 5. At the Windows Component panel, select the Internet Information Services

More information

SSL VPN Setup for Windows

SSL VPN Setup for Windows SSL VPN Setup for Windows SSL VPN allows you to connect from off campus to access campus resources such as Outlook email client, file sharing and remote desktop. These instructions will guide you through

More information

Lesson 7 - Website Administration

Lesson 7 - Website Administration Lesson 7 - Website Administration If you are hired as a web designer, your client will most likely expect you do more than just create their website. They will expect you to also know how to get their

More information

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007

VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 VP-ASP Shopping Cart Quick Start (Free Version) Guide Version 6.50 March 21 2007 Rocksalt International Pty Ltd support@vpasp.com www.vpasp.com Table of Contents 1 INTRODUCTION... 3 2 FEATURES... 4 3 WHAT

More information

07 Forms. 1 About Forms. 2 The FORM Tag. 1.1 Form Handlers

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

More information

FORMS. Introduction. Form Basics

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,

More information

HTML Tables. IT 3203 Introduction to Web Development

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

More information

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com.

All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Terms of Use: All the materials and/or graphics included in the IceThemetheme folders MUST be used ONLY with It TheCityTheme from IceTheme.com. Table of Contents 1- Introduction 3 2- Installing the theme

More information

Site Maintenance. Table of Contents

Site Maintenance. Table of Contents Site Maintenance Table of Contents Adobe Contribute How to Install... 1 Publisher and Editor Roles... 1 Editing a Page in Contribute... 2 Designing a Page... 4 Publishing a Draft... 7 Common Problems...

More information

We begin with a number of definitions, and follow through to the conclusion of the installation.

We begin with a number of definitions, and follow through to the conclusion of the installation. Owl-Hosted Server Version 0.9x HOW TO Set up Owl using cpanel Introduction Much of the documentation for the installation of Owl Intranet Knowledgebase assumes a knowledge of servers, and that the installation

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

Dreamweaver CS6 Basics

Dreamweaver CS6 Basics Dreamweaver CS6 Basics Learn the basics of building an HTML document using Adobe Dreamweaver by creating a new page and inserting common HTML elements using the WYSIWYG interface. EdShare EdShare is a

More information

Uploading and Editing Your Course Web Page

Uploading and Editing Your Course Web Page Uploading and Editing Your Course Web Page CM210 Multimedia Storytelling I Fall 2008 Downloading the Web Page Template I have created and styled a simple Web page that everyone can use as the index page

More information

HELP DESK MANUAL INSTALLATION GUIDE

HELP DESK MANUAL INSTALLATION GUIDE Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation

More information

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver

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

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu

Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu Using the CCNY Server Space with Secure Shell 3.0 for Windows Created by Doris Grasserbauer dgrasserbauer@ccny.cuny.edu Topics: 1. Logging on to the server space 2. How to create a new folder on the server

More information

How to create pop-up menus

How to create pop-up menus How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

ADOBE DREAMWEAVER CS3 TUTORIAL

ADOBE DREAMWEAVER CS3 TUTORIAL ADOBE DREAMWEAVER CS3 TUTORIAL 1 TABLE OF CONTENTS I. GETTING S TARTED... 2 II. CREATING A WEBPAGE... 2 III. DESIGN AND LAYOUT... 3 IV. INSERTING AND USING TABLES... 4 A. WHY USE TABLES... 4 B. HOW TO

More information

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit DREAMWEAVER BASICS A guide to updating Faculty websites Created by the Advancement & Marketing Unit Table of content Tip: Click on the links below to go straight to the desired section The W (Web Services)

More information

E M A I L S E T - U P G U I D E

E M A I L S E T - U P G U I D E E M A I L S E T - U P G U I D E In our effort to help eliminate unwanted Spam, your email system hosted on our SplashWeb server, has additional security features. Unfortunately, this does make setting

More information

WHM Administrator s Guide

WHM Administrator s Guide Fasthosts Customer Support WHM Administrator s Guide This manual covers everything you need to know in order to get started with WHM and perform day to day administrative tasks. Contents Introduction...

More information

Introduction to cpanel

Introduction to cpanel Introduction to cpanel Thank you for hosting your domain with Sierra Tel Internet. In order to provide modern and efficient service, we are housing your website s files on a server running the Linux operating

More information

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook USING OUTLOOK WITH ENTERGROUP In this tutorial you will learn how to use Outlook with your EnterGroup account. You will learn how to setup an IMAP or POP account, and also how to move your emails and contacts

More information

Setting up a site directly to the H-drive in Dreamweaver CS4

Setting up a site directly to the H-drive in Dreamweaver CS4 Department of Technology Assistance Overview: This document will describe how to setup a personal website via the H-drive at RU using Dreamweaver

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

How To Create A Website On Atspace.Com For Free (Free) (Free Hosting) (For Free) (Freer) (Www.Atspace.Com) (Web) (Femalese) (Unpaid) (

How To Create A Website On Atspace.Com For Free (Free) (Free Hosting) (For Free) (Freer) (Www.Atspace.Com) (Web) (Femalese) (Unpaid) ( HO-3: Web Hosting In this hands-on exercise you are going to register for a free web hosting account. We are going to use atspace.com as an example, but other free hosting services work in a similar way

More information

MAPPING THE WEBDRIVE REFERENCE GUIDE

MAPPING THE WEBDRIVE REFERENCE GUIDE MAPPING THE WEBDRIVE REFERENCE GUIDE INTRODUCTION The university WebDrive is a dedicated drive to host all university web content. For help with mapping the WebDrive, please read the instructions below

More information

Hostopia Web Hosting - Getting Started

Hostopia Web Hosting - Getting Started Hostopia Web Hosting - Getting Started Getting Started www.elihosting.net Main Menu www.elihosting.net Home Page Administrative Access: For Email and Website Setup & Maintenance... Point your browser to

More information

Customer Control Panel Manual

Customer Control Panel Manual Customer Control Panel Manual Contents Introduction... 2 Before you begin... 2 Logging in to the Control Panel... 2 Resetting your Control Panel password.... 3 Managing FTP... 4 FTP details for your website...

More information

CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions)

CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions) CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions) Step 1 - DEFINE A NEW WEB SITE - 5 POINTS 1. From the welcome window that opens select the Dreamweaver Site... or from the main

More information

How to Pop Email to Outlook

How to Pop Email to Outlook Webmail Access How to Pop Email to Outlook You can access your email account through the following URL: http://webmail.usalocalbiz.com. The login is your full email address and your account password. We

More information

Standard Mailbox Email Software Setup Guide

Standard Mailbox Email Software Setup Guide Standard Mailbox Email Software Setup Guide Standard Mailbox Setup Guide Setting up a Standard mailbox only takes a few minutes. You can set up any email software to receive email from your mailbox. This

More information

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3.

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3. Thunderbird The changes that need to be made in the email programs will be the following: Incoming mail server: newmail.one-eleven.net Outgoing mail server (SMTP): newmail.one-eleven.net You will also

More information

Dreamweaver Tutorial #1

Dreamweaver Tutorial #1 Dreamweaver Tutorial #1 My first web page In this tutorial you will learn: how to create a simple web page in Dreamweaver how to store your web page on a server to view your page online what the Internet

More information

PDF Web Form. Projects 1

PDF Web Form. Projects 1 Projects 1 In this project, you ll create a PDF form that can be used to collect user data online. In this exercise, you ll learn how to: Design a layout for a functional form. Add form fields and set

More information

Making a Website with Hoolahoop

Making a Website with Hoolahoop Making a Website with Hoolahoop 1) Open up your web browser and goto www.wgss.ca/admin (wgss.hoolahoop.net temporarily) and login your the username and password. (wgss.ca is for teachers ONLY, you cannot

More information

Installation Guide For ChoiceMail Enterprise Edition

Installation Guide For ChoiceMail Enterprise Edition Installation Guide For ChoiceMail Enterprise Edition How to Install ChoiceMail Enterprise On A Server In Front Of Your Company Mail Server August, 2004 Version 2.6x Copyright DigiPortal Software, 2002-2004

More information

Copyright 2011 Center for Innovation in Teaching and Research 1

Copyright 2011 Center for Innovation in Teaching and Research 1 Mobile Websites with Dreamweaver CS5.5 Center for Innovation in Teaching and Research Presenter: Chad Dennis Instructional Technology Systems Manager ce-dennis@wiu.edu Copyright 2011 Center for Innovation

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

What you will need before beginning this guide

What you will need before beginning this guide Installing Wordpress to Easyspace hosting Please note that Easyspace recommend Linux webhosting for installing Wordpress as this allows for easy management of your file/folder permissions. All of the Easyspace

More information

Xtreeme Search Engine Studio Help. 2007 Xtreeme

Xtreeme Search Engine Studio Help. 2007 Xtreeme Xtreeme Search Engine Studio Help 2007 Xtreeme I Search Engine Studio Help Table of Contents Part I Introduction 2 Part II Requirements 4 Part III Features 7 Part IV Quick Start Tutorials 9 1 Steps to

More information

RoboMail Mass Mail Software

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.

More information

Web Hosting Training Guide. Web Hosting Training Guide. Author: Glow Team Page 1 of 22 Ref: GC349_v1.1

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

More information

Talk Internet User Guides Controlgate Administrative User Guide

Talk Internet User Guides Controlgate Administrative User Guide Talk Internet User Guides Controlgate Administrative User Guide Contents Contents (This Page) 2 Accessing the Controlgate Interface 3 Adding a new domain 4 Setup Website Hosting 5 Setup FTP Users 6 Setup

More information

Initial Setup of Mozilla Thunderbird with IMAP for Windows 7

Initial Setup of Mozilla Thunderbird with IMAP for Windows 7 Initial Setup of Mozilla Thunderbird Concept This document describes the procedures for setting up the Mozilla Thunderbird email client to download messages from Google Mail using Internet Message Access

More information

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer)

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer) ITS Training Introduction to Web Development with Dreamweaver In this Workshop In this workshop you will be introduced to HTML basics and using Dreamweaver to create and edit web files. You will learn

More information

507-214-1000. This information is provided for informational purposes only.

507-214-1000. This information is provided for informational purposes only. 507-214-1000 This information is provided for informational purposes only. The following guide will show you how to set up email in various email programs. The Basic Email settings for all email addresses

More information

Configuring Thunderbird for Flinders Mail at home.

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

More information

Basic Web Development @ Fullerton College

Basic Web Development @ Fullerton College Basic Web Development @ Fullerton College Introduction FC Net Accounts Obtaining Web Space Accessing your web space using MS FrontPage Accessing your web space using Macromedia Dreamweaver Accessing your

More information

How to Create a WordPress web site at www.blacksun.ca

How to Create a WordPress web site at www.blacksun.ca How to Create a WordPress web site at www.blacksun.ca by R. Berdan Dec 1, 2012 What you need. 1. Web Host & Domain name www.blacksun.ca with support for PHP 5.2.4 or greater, MySQL 5.0 or greater (you

More information

Tutorial 6 Creating a Web Form. HTML and CSS 6 TH EDITION

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

More information

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server

How to Setup and Connect to an FTP Server Using FileZilla. Part I: Setting up the server How to Setup and Connect to an FTP Server Using FileZilla The ability to store data on a server and being able to access the data from anywhere in the world has allowed us to get rid of external flash

More information

1. After installing you can launch the program by clicking on the Start button and then select Programs, then WS_FTP LE, and then WS_FTP LE.

1. After installing you can launch the program by clicking on the Start button and then select Programs, then WS_FTP LE, and then WS_FTP LE. Section 1.0 How-To: Connecting to Warrnambool on The Web Using WS-FTP LE. This program can be downloaded from http://download.com.com/3000-2160-10018456.html 1. After installing you can launch the program

More information

In this tutorial I will be uploading multiple images to my ftp folder on my ktools site, and then add them using manager.

In this tutorial I will be uploading multiple images to my ftp folder on my ktools site, and then add them using manager. How to upload images via ftp In this tutorial I will be uploading multiple images to my ftp folder on my ktools site, and then add them using manager. First thing I need to do is get all my images ready.

More information

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP Introduction This document describes how to create a basic web page with Netscape/Mozilla Composer and how to publish

More information

CREATING YOUR ONLINE PRESENCE

CREATING YOUR ONLINE PRESENCE CREATING YOUR ONLINE PRESENCE Congratulations on signing up for your webhosting package, you ve just completed the first and most important step in establishing your online presence. There are just a few

More information

1. Open the preferences screen by opening the Mail menu and selecting Preferences...

1. Open the preferences screen by opening the Mail menu and selecting Preferences... Using TLS encryption with OS X Mail This guide assumes that you have already created an account in Mail. If you have not, you can use the new account wizard. The new account wizard is in the Accounts window

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

MAXMAILER USER GUIDE

MAXMAILER USER GUIDE MaxBulk Mailer MAXMAILER USER GUIDE For campus help, contact: 6-TECH Technical Support by e-mailing 6tech@uncg.edu or calling 336.256.TECH(8324) 1 The MaxBulk Mailer document window is made of five tab

More information

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login

More information

Online shopping store

Online shopping store Online shopping store 1. Research projects: A physical shop can only serves the people locally. An online shopping store can resolve the geometrical boundary faced by the physical shop. It has other advantages,

More information

Configuring iplanet 6.0 Web Server For SSL and non-ssl Redirect

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

More information

IIS, FTP Server and Windows

IIS, FTP Server and Windows IIS, FTP Server and Windows The Objective: To setup, configure and test FTP server. Requirement: Any version of the Windows 2000 Server. FTP Windows s component. Internet Information Services, IIS. Steps:

More information

How to set up your Secure Email in Outlook 2010*

How to set up your Secure Email in Outlook 2010* How to set up your Secure Email in Outlook 2010* This guide is for hosting clients who are hosting their email with us. If you are using a third party email, you should not use these instructions. 1. Open

More information

College of Continuing Education Video Production Room

College of Continuing Education Video Production Room College of Continuing Education Video Production Room To Begin a Session: Step 1: Turn on the Station by pressing the red switch near the desktop monitor. By doing this the following equipment will be

More information

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs

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

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information