Step by step guides. Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015

Size: px
Start display at page:

Download "Step by step guides. Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015"

Transcription

1 Step by step guides Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015

2 Websites are a mainstay of online activities whether you want a personal site for yourself or a band, or you re running a business. In this Quick Start guide, we ll highlight just how easy it is to set up your own web app on Azure services using Visual Studio 2015 and the Azure SDK, in the company of Microsoft Technical Evangelist Lee Stott. Here s what you need Visual Studio Community 2015: Azure SDK 2.7: You ll also need to have activated your free Azure student subscription through Microsoft DreamSpark: See here for step by step instructions: Okay, let s get started! 1 Open Visual Studio Community 2015 Sign in to your Microsoft Account by clicking Sign in in the upper right corner (if you haven t already). If you have multiple accounts, make sure this is the same one that you previously used with DreamSpark and Azure. You re in! Visual Studio 2015 will automatically recognize your Azure subscription key. 2 Open Visual Studio 2015 Cloud Explorer Cloud Explorer is Visual Studio 2015 s direct connection to Azure. Open that tool now from the menu by clicking: View / Other Windows / Cloud Explorer And just like that, here s your Azure subscription!

3 See that Actions pane at the bottom? It s pretty handy: Open in portal will open your web app within the Azure Portal Open in Browser pops open your default web browser and goes straight to your live web app. Note: you can also bring up the Actions pane if you right click on one of your web apps. 3 Create a New Web Site Solution We re going to make something new! Let s get started. Go to the menu and click: File / New / Web Site You ll then see this window click ASP.NET Empty Web Site: Then you ll see your Solution Explorer on the right with your brand new Web Site solution!

4 4 Make a Homepage From Solution Explorer, right click on your WebSite solution and click: Add / Add New Item This gives you a new window where you ll click HTML Page and Add: Alternatively, hit Ctrl+Shift+A. Now Solution Explorer will show your new empty web page file: By default, it s called HtmlPage.html. You re going to make this the homepage for your project, so it s best to rename it to index.html. That s a standard name for a homepage and web browsers will find it more easily. Tip: How to rename a file in a Visual Studio project There are two ways: 1) Right-click on HtmlPage.html and click Rename from the pop-up window 2) Look below Solution Explorer in the Properties window where it shows the File Name field. Click HtmlPage.html there and rename it to index.html. All set? Let s do a little web coding!

5 5 Code Your Web Page Now it s time to make a very simple web page, so that you can see Visual Studio 2015 and Azure in action. Your index. html file should now be open in the main window if it isn t, then double click it in the Solution Explorer.) The file already has this HTML text: 1: <!DOCTYPE html> 2: <html> 3: <head> 4: <title></title> 5: <meta charset= utf-8 /> 6: </head> 7: <body> 8: </body> 9: </html> Click the cursor in between the <title> and </title> tags (line 4). You need to give your web page a title let s call it Hello Cloud! Just type that between the tags. 1: <!DOCTYPE html> 2: <html> 3: <head> 4: <title>hello Cloud!</title> 5: <meta charset= utf-8 /> 6: </head> 7: <body> 8: </body> 9: </html> Now click on that blank link in between <body> and </body>. Type this in just as it appears: 1: <h1>hello Cloud!</h1> 2: <p>check out this sweet website I made in Visual Studio 3: 2015!</p> So now you ve got a complete web page! It should all look like this: 1: <!DOCTYPE html> 2: <html> 3: <head> 4: <title>hello Cloud!</title> 5: <meta charset= utf-8 /> 6: </head> 7: <body> 8: <h1>hello Cloud!</h1> 9: <p>check out this sweet website I made in Visual Studio 10: 2015!</p> 11: </body> 12: </html> Done! All you need to do is publish your page as a web app to Azure.

6 6 Publish Your Web App Back in Solution Explorer, right-click on your WebSite solution and click Publish Web App: This opens a Publish Web window. Profile should already be selected on the left. Click Microsoft Azure Web Apps, and then from the next pop-up window click New Now it s time to do some serious Azure stuff. You re going to name your web app and assign a bunch of Azure attributes to it: an App Service plan, a Resource group, and a Region. First up, click in the blank field by Web App name and type a name for your web app. Here s the window: This will be the URL for your website. Whatever you type will be put in front of.azurewebsites.net, so choose wisely! In my example it s called myhellocloud, so my website URL is (in fact, you can go look at it right now if you want). Since myhellocloud has been used you ll need to type something else. The green tick will appear when you ve typed a URL that nobody else has selected.

7 Now for the other Azure attributes. Now your window looks like this: For App Service plan, click the dropdown and select Create new App Service plan. Another field will appear we ll deal with that in a moment. For Resource group, click the dropdown and select Create new resource group. As before, a new field will appear. For Region, click the dropdown and select the region closest to you in the world. Now for the new App Service plan and resource group name fields. What is an App Service plan? It s a set of attributes that you can reuse across multiple apps. The attributes include a pricing tier (SELECT FREE and a Subscription if you have multiple Azure subscriptions). The plan you create right now will probably work for all the web apps you build while you re a student. You can name yours whatever you want. I named mine myappserviceplan. Here is what my window looks like now: What is a Resource group? It s a label that lets you group multiple Azure resources together, making it easy to select them all at once in the Azure Portal. Developers generally create resource groups for a bunch of specific resources so they can view them all at once, monitor them as a group, track the costs and billing for that group, and so on. Since it s just a label you can name it whatever you want. I named mine myresourcegroup. What is a Region? The dropdown lists every Azure datacenter in the world that you can host your web app in. The rule of thumb is you want to put your data close to your Region, so for the UK select a European Data Centre.

8 Now click the Create button and this happens: After a little while, or maybe a few minutes, the web app is set up and it s time to actually publish your web page. Here s the window all you do is click the Publish button: Next your Web browser will open a window and display your new web site. Within Visual Studio you can see the Output window which shows the progress of publishing your homepage to the Azure datacenter in the region you selected. Want to see my site live for real? It s right here:

9 7 Go back to Cloud Explorer Remember Cloud Explorer back in Step 2? Why did we open that thing anyway? Let s go back and check on it. Do two things: 1) Click the Refresh button. That s the blue circle arrow near the top. 2) Double click Web Apps in the list to expand its contents. THERE IT IS! Your new web app is right there in Cloud Explorer (the example shows myhellocloud). You can right-click it (or use the Actions panel) to open it in your browser anytime. You can also open it in the Azure Portal, but we can explore that some other time. 8 Make a Change and Publish Again! Your index.html file is probably still open. If not, double click it in Solution Explorer. 1: <!DOCTYPE html> 2: <html> 3: <head> 4: <title>hello Cloud!</title> 5: <meta charset= utf-8 /> 6: </head> 7: <body> 8: <h1>hello Cloud!</h1> 9: <p>check out this sweet website I made in Visual Studio 10: 2015!</p> 11: </body> 12: </html>

10 Click your cursor at the end of that </p> line and hit Enter to start a new line. Then type something like this: 1: <p>updating My web page which is being hosted on 2: Azure datacenter!</p> Whatever you type needs the paragraph tags, <p> at the start and </p> at the end. So now my index.html looks like this: 1: <!DOCTYPE html> 2: <html> 3: <head> 4: <title>hello Cloud!</title> 5: <meta charset= utf-8 /> 6: </head> 7: <body> 8: <h1>hello Cloud!</h1> 9: <p>check out this sweet website I made in Visual Studio 10: 2015!</p> 11: <p>updating My web page which is being hosted on Azure 12: datacenter!</p> 13: </body> 14: </html> To publish the page again Just right-click your WebSite solution again over there in Solution Explorer and click Publish Web App from the pop-up window:

11 Then you ll see this window again: All you do is click the Publish button. The window goes away, that Output window at the bottom of the screen goes crazy for a few seconds, and then BAM you re at your updated homepage! If you don t see the change you made, hit F5 to refresh your browser. That s it! You have made your first web page in Visual Studio 2015 and Azure. Of course, you ll be able to produce a more impressive-looking page than mine in no time! With thanks to Lee Stott, Microsoft Technical Evangelist 2015 Microsoft Corporation. All rights reserved.

Your First Web Page. It all starts with an idea. Create an Azure Web App

Your First Web Page. It all starts with an idea. Create an Azure Web App Your First Web Page It all starts with an idea Every web page begins with an idea to communicate with an audience. For now, you will start with just a text file that will tell people a little about you,

More information

Using Microsoft Azure for Students

Using Microsoft Azure for Students Using Microsoft Azure for Students Dive into Azure through Microsoft Imagine s free new offer and learn how to develop and deploy to the cloud, at no cost! To take advantage of Microsoft s cloud development

More information

Using IIS and UltraDev Locally page 1

Using IIS and UltraDev Locally page 1 Using IIS and UltraDev Locally page 1 IIS Web Server Installation IIS Web Server is the web server provided by Microsoft for platforms running the various versions of the Windows Operating system. It is

More information

Build an ArcGIS Online Application

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.

More information

So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going.

So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going. Web Design 1A First Website Intro to Basic HTML So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going. Ok, let's just go through the steps

More information

Create and run apps on HANA Cloud in SAP Web IDE

Create and run apps on HANA Cloud in SAP Web IDE SAP Web IDE How-To Guide Provided by Customer Experience Group Create and run apps on HANA Cloud in SAP Web IDE Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History Document

More information

Working with the Ektron Content Management System

Working with the Ektron Content Management System Working with the Ektron Content Management System Table of Contents Creating Folders Creating Content 3 Entering Text 3 Adding Headings 4 Creating Bullets and numbered lists 4 External Hyperlinks and e

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

Lab 1: Windows Azure Virtual Machines

Lab 1: Windows Azure Virtual Machines Lab 1: Windows Azure Virtual Machines Overview In this hands-on Lab, you will learn how to deploy a simple web page to a Web server hosted in Windows Azure and configure load balancing. Objectives In this

More information

HOW TO ADD A CALL TO ACTION BUTTON TO YOUR WEBSITE

HOW TO ADD A CALL TO ACTION BUTTON TO YOUR WEBSITE .com HOW TO ADD A CALL TO ACTION BUTTON TO YOUR WEBSITE Websites are scary when you look at how they have been built! These are very simple instructions that can help you add some buttons to your website

More information

Google Docs: Share and collaborate

Google Docs: Share and collaborate Google Docs: Share and collaborate Once you've created your document, share it with others! Collaborators can then edit the same document at the same time -- you'll always have the most up-to-date version

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

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

Short notes on webpage programming languages

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

More information

Web Design with Dreamweaver Lesson 4 Handout

Web Design with Dreamweaver Lesson 4 Handout Web Design with Dreamweaver Lesson 4 Handout What we learned Create hyperlinks to external websites Links can be made to open in a new browser window Email links can be inserted onto webpages. When the

More information

Viral Mail Profits. Mailing to the Max! User's Guide

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

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Simple Computer Backup

Simple Computer Backup Title: Simple Computer Backup (Win 7 and 8) Author: Nancy DeMarte Date Created: 11/10/13 Date(s) Revised: 1/20/15 Simple Computer Backup This tutorial includes these methods of backing up your PC files:

More information

Zotero. Zotero works best with Firefox, but Google Chrome and Safari may be used standalone.

Zotero. Zotero works best with Firefox, but Google Chrome and Safari may be used standalone. Zotero 1. Install Zotero works best with Firefox, but Google Chrome and Safari may be used standalone. If you need to download Mozilla go to http://www.mozilla.org/en-us/firefox/new/ and follow the prompts.

More information

Use Blackboard 9.1 Auto-Submit and Provide a more time accommodation

Use Blackboard 9.1 Auto-Submit and Provide a more time accommodation Use Blackboard 9.1 Auto-Submit and Provide a more time accommodation Blackboard 9.1 introduced a highly requested feature in the tests and quizzes tool the ability to have a time limit enforced on an exam.

More information

https://mail.wheelock.edu

https://mail.wheelock.edu The Wheelock College Guide to Understanding Microsoft Outlook Web Access Maintained by: Wheelock College Department of Information Technology Version 1.1 June 2006 https://mail.wheelock.edu This document

More information

Using Application Insights to Monitor your Applications

Using Application Insights to Monitor your Applications Using Application Insights to Monitor your Applications Overview In this lab, you will learn how to add Application Insights to a web application in order to better detect issues, solve problems, and continuously

More information

Sending Email Blasts in NationBuilder

Sending Email Blasts in NationBuilder Sending Email Blasts in NationBuilder Sensible BC Campaign So you ve got an email that you want to send out to the other volunteers and supporters in your area, how do you get that message out team your

More information

Cognos 10 Getting Started with Internet Explorer and Windows 7

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

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

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Email User Manual. [Outlook Web App 2013]

Email User Manual. [Outlook Web App 2013] [Outlook Web App 2013] Central Information Systems Division March 2014 Table of Contents 1. To Login... 4 2. To Logout... 5 3. Change Password... 5 4. Email Messaging... 6 4.1 Create a New Mail... 6 4.2

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

LAB 1: Getting started with WebMatrix. Introduction. Creating a new database. M1G505190: Introduction to Database Development

LAB 1: Getting started with WebMatrix. Introduction. Creating a new database. M1G505190: Introduction to Database Development LAB 1: Getting started with WebMatrix Introduction In this module you will learn the principles of database development, with the help of Microsoft WebMatrix. WebMatrix is a software application which

More information

Google Docs, Sheets, and Slides: Share and collaborate

Google Docs, Sheets, and Slides: Share and collaborate Google Docs, Sheets, and Slides: Share and collaborate Once you've created your document, you can share it with others. Collaborators can then edit the same document at the same time you'll always have

More information

HTML tutorial. Purpose: Importance: Very few people code HTML by hand anymore. There are a multiplicity

HTML tutorial. Purpose: Importance: Very few people code HTML by hand anymore. There are a multiplicity HTML tutorial Purpose: Introduce you to basic web page coding. This is a basic tutorial which will prepare you for the use of more sophisticated HTML editing tools. Importance: Very few people code HTML

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows to create and customise the style and layout of your site without you having to understand any coding or HTML. In this guide

More information

OWA User Guide. Table of Contents

OWA User Guide. Table of Contents OWA User Guide Table of Contents 1. Basic Functionality of Outlook Web Access... 2 How to Login to Outlook Web Access (OWA)... 2 Change Password... 3 Mail... 3 Composing Mail... 5 Attachments - Web Ready

More information

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved.

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved. Snagit 10 Getting Started Guide March 2010 2010 TechSmith Corporation. All rights reserved. Introduction If you have just a few minutes or want to know just the basics, this is the place to start. This

More information

(These instructions are only meant to get you started. They do not include advanced features.)

(These instructions are only meant to get you started. They do not include advanced features.) FrontPage XP/2003 HOW DO I GET STARTED CREATING A WEB PAGE? Previously, the process of creating a page on the World Wide Web was complicated. Hypertext Markup Language (HTML) is a relatively simple computer

More information

LEARNING RESOURCE CENTRE. Guide to Microsoft Office Online and One Drive

LEARNING RESOURCE CENTRE. Guide to Microsoft Office Online and One Drive LEARNING RESOURCE CENTRE Guide to Microsoft Office Online and One Drive LEARNING RESOURCE CENTRE JULY 2015 Table of Contents Microsoft Office Online... 3 How to create folders... 6 How to change the document

More information

Caldes CM12: Content Management Software Introduction v1.9

Caldes CM12: Content Management Software Introduction v1.9 Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge

More information

Dynamics CRM for Outlook Basics

Dynamics CRM for Outlook Basics Dynamics CRM for Outlook Basics Microsoft Dynamics CRM April, 2015 Contents Welcome to the CRM for Outlook Basics guide... 1 Meet CRM for Outlook.... 2 A new, but comfortably familiar face................................................................

More information

Instructions for Formatting APA Style Papers in Microsoft Word 2010

Instructions for Formatting APA Style Papers in Microsoft Word 2010 Instructions for Formatting APA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

QQ WebAgent Quick Start Guide

QQ WebAgent Quick Start Guide QQ WebAgent Quick Start Guide Contents QQ WebAgent Quick Start Guide... 1 Implementing QQ WebAgent. on Your Web Site... 2 What You Need to Do... 2 Instructions for Web designers, Webmasters or Web Hosting

More information

Contacts: Email, find, and manage your contacts

Contacts: Email, find, and manage your contacts Does your Contact Manager look different than what s shown here? To fix this, switch to the new look! Contacts: Email, find, and manage your contacts With Google Apps, you can easily organize, find, contact,

More information

welcome to my Randstad web timesheets!

welcome to my Randstad web timesheets! welcome to my Randstad web timesheets! In addition to viewing bookings and payslips, your my Randstad web portal now also has an easy to use timesheet section, to enter and submit your shift, break, allowance,

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

CORE K-Nect Web Portal

CORE K-Nect Web Portal CORE K-Nect Web Portal Training October 2015 KIOSK Information Systems www.kiosk.com October 2015 Table of Contents Table of Contents 1 Getting Started 2 Logging In 2 Your Account Settings 3 My Profile

More information

Microsoft Office & Lync Tech Tips

Microsoft Office & Lync Tech Tips Microsoft Office & Lync Tech Tips Tech Tip - Using Conversation View in Outlook There are several ways to sort or organize your e-mails within Outlook. Sorting by sender, subject, received date and size

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

Title: SharePoint Advanced Training

Title: SharePoint Advanced Training 416 Agriculture Hall Michigan State University 517-355- 3776 http://support.anr.msu.edu support@anr.msu.edu Title: SharePoint Advanced Training Document No. - 106 Revision Date - 10/2013 Revision No. -

More information

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE There are several ways to eliminate having too much email on the Exchange mail server. To reduce your mailbox size it is recommended that you practice the following tasks: Delete items from your Mailbox:

More information

LiveEngage Setup Guide

LiveEngage Setup Guide LiveEngage Setup Guide Welcome to the LivePerson community! Congratulations on joining the worldwide movement toward digital engagement to satisfy customers and increase sales. This guide is just one of

More information

How To Build An Intranet In Sensesnet.Com

How To Build An Intranet In Sensesnet.Com Sense/Net 6 Evaluation Guide How to build a simple list-based Intranet? Contents 1 Basic principles... 4 1.1 Workspaces... 4 1.2 Lists... 4 1.3 Check-out/Check-in... 5 1.4 Version control... 5 1.5 Simple

More information

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D Chapter 2 HTML Basics Key Concepts Copyright 2013 Terry Ann Morris, Ed.D 1 First Web Page an opening tag... page info goes here a closing tag Head & Body Sections Head Section

More information

Shasta College SharePoint Tutorial. Create an HTML Form

Shasta College SharePoint Tutorial. Create an HTML Form Create an HTML Form SharePoint HTML forms are based on Lists. Lists are like mini-databases inside of SharePoint that define the form s fields and stores the data submitted from the form. Before you can

More information

BeamYourScreen User Guide Mac Version

BeamYourScreen User Guide Mac Version BeamYourScreen User Guide Mac Version Table of Contents Registration 3 Download & Installation 4 Start a Session 5 Join a Session 6 Features 7 Participant List 7 Switch Presenter 8 Remote Control 8 Whiteboard

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

TAMUS Terminal Server Setup BPP SQL/Alva

TAMUS Terminal Server Setup BPP SQL/Alva We have a new method of connecting to the databases that does not involve using the Texas A&M campus VPN. The new way of gaining access is via Remote Desktop software to a terminal server running here

More information

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide State of Nevada Ektron Content Management System (CMS) Basic Training Guide December 8, 2015 Table of Contents Logging In and Navigating to Your Website Folders... 1 Metadata What it is, How it Works...

More information

DYNAMICS TUTORIAL. The Dynamics Series

DYNAMICS TUTORIAL. The Dynamics Series DYNAMICS TUTORIAL Requirements Read the following introduction taken from the Dynamics Product Fundamentals manual. Then use the on-line tutorial to familiarize yourself with the basics of Dynamics. (Instructions

More information

Login: https://ipfw.edu/c Quick Guide for dotcms & Accessibility November 2014 Training: http://ipfw.edu/training

Login: https://ipfw.edu/c Quick Guide for dotcms & Accessibility November 2014 Training: http://ipfw.edu/training dotcms & Accessibility Folders Creating a New Folder Note: All folders showing on menu must have an index page. 1. Right-click the parent folder in which the new folder will reside. 2. Click New > Folder.

More information

Welcome! Want to find out more? Follow this tutorial, then launch Part 1 to get started.

Welcome! Want to find out more? Follow this tutorial, then launch Part 1 to get started. Welcome! Welcome to the Business Plan Wizard, an interactive learning environment all about business planning. You and two other students named Trina and Jordan are about to meet a Wizard who will show

More information

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0 University of Sheffield PART 1 1.1 Getting Started 1. Log on to the computer with your usual username

More information

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE

CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE CITY OF BURLINGTON PUBLIC SCHOOLS MICROSOFT EXCHANGE 2010 OUTLOOK WEB APP USERS GUIDE INTRODUCTION You can access your email account from any workstation at your school using Outlook Web Access (OWA),

More information

Outlook Web App (OWA) Quick Start Guide

Outlook Web App (OWA) Quick Start Guide As we move to AD, Office365 and Outlook from our comfort zone of Novell and GroupWise, remember that you have been using Microsoft for a long time. Yes, Office is a Microsoft product. Since Outlook is

More information

Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure

Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure 1 Getting Started Guide with Microsoft Azure Getting Started Guide: Deploying Puppet Enterprise in Microsoft Azure Puppet Enterprise

More information

Help Guide - CSR Portal https://csrconnect.calcsea.org

Help Guide - CSR Portal https://csrconnect.calcsea.org Help Guide - CSR Portal https://csrconnect.calcsea.org Welcome to the CSR Portal The website where you can view membership information, download reports, and request address, phone, and email changes.

More information

Mail in Outlook Web App

Mail in Outlook Web App Page 1 of 7 Mail in Outlook Web App When you open Outlook Web App, the first thing you ll see is your Inbox. This is where messages sent to you arrive, and this is where you ll probably spend the most

More information

About XML in InDesign

About XML in InDesign 1 Adobe InDesign 2.0 Extensible Markup Language (XML) is a text file format that lets you reuse content text, table data, and graphics in a variety of applications and media. One advantage of using XML

More information

Microsoft Word 2013 Basics

Microsoft Word 2013 Basics Microsoft Word 2013 Basics 1. From Start, look for the Word tile and click it. 2. The Ribbon- seen across the top of Microsoft Word. The ribbon contains Tabs, Groups, and Commands a. Tabs sit across the

More information

TYPING IN ARABIC (WINDOWS XP)

TYPING IN ARABIC (WINDOWS XP) TYPING IN ARABIC (WINDOWS XP) There are two steps involved in setting up your Windows XP computer for Arabic. You must first install support for right-to-left languages; then you must enable Arabic input.

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows you to create and customise the style and layout of your site without having to understand any coding or HTML. In this guide

More information

How to get the most out of Windows 10 File Explorer

How to get the most out of Windows 10 File Explorer How to get the most out of Windows 10 File Explorer 2 Contents 04 The File Explorer Ribbon: A handy tool (once you get used to it) 08 Gain a new perspective with the Group By command 13 Zero in on the

More information

Gaggle Account How-To. How do I login to my Gaggle Account? To login, follow these steps: Go to: www.gaggle.net

Gaggle Account How-To. How do I login to my Gaggle Account? To login, follow these steps: Go to: www.gaggle.net Gaggle Account How-To How do I login to my Gaggle Account? To login, follow these steps: Go to: www.gaggle.net Click the button in the top right corner labeled Customer Login. Enter your email name. Enter

More information

REAL ESTATE CLIENT MANAGEMENT QUICK START GUIDE

REAL ESTATE CLIENT MANAGEMENT QUICK START GUIDE REAL ESTATE CLIENT MANAGEMENT QUICK START GUIDE The purpose of the quick start guide is to help you get started using the Real Estate Client Management (RECM) product quickly. For a more in-depth quick

More information

Zoho CRM and Google Apps Synchronization

Zoho CRM and Google Apps Synchronization Zoho CRM and Google Apps Synchronization Table of Contents End User Integration Points 1. Contacts 2. Calendar 3. Email 4. Tasks 5. Docs 3 6 8 11 12 Domain-Wide Points of Integration 1. Authentication

More information

How To Use Spss

How To Use Spss 1: Introduction to SPSS Objectives Learn about SPSS Open SPSS Review the layout of SPSS Become familiar with Menus and Icons Exit SPSS What is SPSS? SPSS is a Windows based program that can be used to

More information

Shopping Cart Manual. Written by Shawn Xavier Mendoza

Shopping Cart Manual. Written by Shawn Xavier Mendoza Shopping Cart Manual Written by Shawn Xavier Mendoza Table of Contents 1 Disclaimer This manual assumes that you are using Wix.com for website creation, and so this method may not work for all other online

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Creating Web Pages With Dreamweaver MX 2004

Creating Web Pages With Dreamweaver MX 2004 Creating Web Pages With Dreamweaver MX 2004 1 Introduction Learning Goal: By the end of the session, participants will have an understanding of: What Dreamweaver is, and How it can be used to create basic

More information

Teacher Activities Page Directions

Teacher Activities Page Directions Teacher Activities Page Directions The Teacher Activities Page provides teachers with access to student data that is protected by the federal Family Educational Rights and Privacy Act (FERPA). Teachers

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Getting Started in Tinkercad

Getting Started in Tinkercad Getting Started in Tinkercad By Bonnie Roskes, 3DVinci Tinkercad is a fun, easy to use, web-based 3D design application. You don t need any design experience - Tinkercad can be used by anyone. In fact,

More information

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade Exercise: Creating two types of Story Layouts 1. Creating a basic story layout (with title and content)

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

Rapid Website Deployment With Django, Heroku & New Relic

Rapid Website Deployment With Django, Heroku & New Relic TUTORIAL Rapid Website Deployment With Django, Heroku & New Relic by David Sale Contents Introduction 3 Create Your Website 4 Defining the Model 6 Our Views 7 Templates 7 URLs 9 Deploying to Heroku 10

More information

Frames. In this chapter

Frames. In this chapter Frames 2007 NOTES This article was originally published in 2003 as Chapter 12 of Learning Web Design, 2nd edition. Since the time of its publication, frames have become all but extinct, particularly for

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

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

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

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

Write a Web Application for Free Edition 2

Write a Web Application for Free Edition 2 Write a Web Application for Free Edition 2 Thomas Davenport This book is for sale at http://leanpub.com/writeawebapplication4free This version was published on 2016-01-27 This is a Leanpub book. Leanpub

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

How to use Office 365 with your OneDrive File Storage Facility

How to use Office 365 with your OneDrive File Storage Facility How to use Office 365 with your OneDrive File Storage Facility As a student at Pembrokeshire College you will have access to Microsoft s Office 365 and the OneDrive file storage facility. Microsoft Office

More information

Google Drive Create, Share and Edit Documents Online

Google Drive Create, Share and Edit Documents Online Revision 3 (1-31-2014) Google Drive Create, Share and Edit Documents Online With Google Drive, you can easily create, share, and edit documents online. Here are a few specific things you can do: Convert

More information

Introduction to Microsoft Outlook Web Access Faculty/Staff e-mail Tutorial

Introduction to Microsoft Outlook Web Access Faculty/Staff e-mail Tutorial Introduction to Microsoft Outlook Web Access Faculty/Staff e-mail Tutorial Accessing Outlook Web Mail First, you ll need to be in a browser such as Microsoft Internet Explorer or Netscape Communicator.

More information

Microsoft PowerPoint 2010 Computer Jeopardy Tutorial

Microsoft PowerPoint 2010 Computer Jeopardy Tutorial Microsoft PowerPoint 2010 Computer Jeopardy Tutorial 1. Open up Microsoft PowerPoint 2010. 2. Before you begin, save your file to your H drive. Click File > Save As. Under the header that says Organize

More information

Click on a link below to navigate this document, or use bookmarks in Adobe.

Click on a link below to navigate this document, or use bookmarks in Adobe. Website Instructions Click on a link below to navigate this document, or use bookmarks in Adobe. Logging in and User Registration MyUSG Quoting Online with USLI Quoting Online with RAMP: Century Surety

More information

Easy Social Media Management with Hootsuite

Easy Social Media Management with Hootsuite Easy Social Media Management with Hootsuite Hootsuite is the largest social media integration and management platform on the Internet. It has sent over 700 million messages to date and has over 3 million

More information

A quick Guide to your Super Hub 2ac

A quick Guide to your Super Hub 2ac A quick Guide to your Super Hub 2ac HELLO. W el c o m e t o t h i s h a n d y g u i d e t o y o u r n ew v i r g i n m e d i a b u s i n e s s b r o a d b a n d. What s inside Getting to know your Super

More information

Outlook Web App (OWA) To create a new message:

Outlook Web App (OWA) To create a new message: What you ll see in Mail 1. Create a new message by clicking New mail. 2. Folder list. The folder list includes the folders in your mailbox. It may include other folders, such as Favorites and archive folders.

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