MSVS File New Project ASP.NET Web Application, Name: w25emplo OK.

Size: px
Start display at page:

Download "MSVS File New Project ASP.NET Web Application, Name: w25emplo OK."

Transcription

1 w25emplo Start the Microsoft Visual Studio. MSVS File New Project ASP.NET Web Application, Name: w25emplo OK. Ctrl + F5. The ASP.NET Web Developer Server, e.g. on port 50310, starts, and a default browser, e.g. Firefox, displays a default implementation of the Default.aspx page. Our application should consist of only one page. To this end modify the following files. Make the file Site.Master to look like: <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="w25Emplo.SiteMaster" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" " <html xmlns=" xml:lang="en"> <head runat="server"> <link href="~/styles/site.css" rel="stylesheet" type="text/css" /> </head> <body> <form runat="server"> <div class="page"> <div class="main" style="background-color: #ccff99; height: 250px;"> <asp:contentplaceholder ID="MainContent" runat="server"/> </div> </div> </form> </body> </html> Make the file Default.aspx to look like: <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="w25Emplo._Default" %> <asp:content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> </asp:content> Ctrl + F5. The browser displays an empty page.

2 From the Toolbox drag and drop on the Default page the controls described in the following. For every control, right after having it dropped, adjust: Format Set Position Absolute. Thereafter position each control in accordance to the screenshot of the IDE: In particular, drag and drop the following controls: Six Label controls: lbemployees, lbfirstname, lblastname, lbyear, lbposition, lbroles. For every label, in the Properties pane set: BackColor= White, ForeColor= Red. In the Properties pane set their Text properties to e.g First-Name=. Four TextBox controls: txbfirstname, txblastname, txbyear, txbresult. For the txbyear s set the property: Text= One RadioButtonList control: rblposition. In the Properties pane set: AutoPostBack= True, BackColor= White, ForeColor= Red, Font Bold= True. In the Properties pane click the Items property, and then the square with three dots. In the popped up window add three items: worker, boss and president. For the worker, set Selected= True. One DropDownList control: ddlroles. In the Properties pane set: AutoPostBack= True, BackColor= White, ForeColor= Red, Font Bold= True. Two Button controls: btnshow, btnclear. In the Properties pane set: BackColor= White. ForeColor= Red, Font Bold= True, Text= Show (or Clear). In the Properties pane, for the btnclear button, set: CauseValidation= False.

3 Three RequiredFieldValidator controls: rfvfirstname, rfvlastname, rfvyear. In the Properties pane set: ErrorMessage= First Name required, or Last Name required, or Year Of Birth required. In the Properties pane set: ControlToValidate= txbfirstname, or txblastname, or txbyear. In the Properties pane set: ForeColor= #FF0066, Font Bold= True. Note that, at run time, validator controls only become visible if erroneous information would be submitted to the server. One RegularExpressionValidator revyear control. In the Properties pane set: ErrorMessage= Year required, e.g. 1955, ControlToValidate= txbyear, ForeColor= #FF0066, Font Bold= True, ValidationExpression=\s*d{4}\s* \s*[+-]\s*d{4}\s*.?\s*. (without the last dot). The expression, or pattern, consists of two alternatives, joined by the sign of. The second alternative allows for the year written as e.g Meaning of the symbols: \s* - any number of white spaces, d{4} four decimal values, e.g. 1955, - alternative, i.e. logical OR, [+-] character class: either the + or the - sign.? optional dot mark (one at the most). One ValidationSummary vsummary control. In the Properties pane set: ForeColor= #FF0066, Font Bold= True. EVENTS Select the Default page, then the Properties pane, and then the Events tab. For the rblposition and ddlroles controls subscribe for the SelectedIndexChanged event. For the btnshow and btnclick controls subscribe for the Click event. Edit the Default.aspx.cs file, including the bodies of the added event handlers: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace w25emplo { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) {if(!ispostback) {rblposition_selectedindexchanged(this.rblposition,eventargs.empty); } //will populate DropDownList ddlroles.

4 protected void btnshow_click(object sender, EventArgs e) {txbresult.text= string.format( " Info on: {0} {1}, born {2}: position={3}, role={4}",txbfirstname.text, txblastname.text,txbyear.text.trim(),rblposition.selectedvalue,ddlroles.text); protected void btnclear_click(object sender, EventArgs e) {txbfirstname.text= ""; txblastname.text= ""; txbyear.text= ""; rblposition.selectedindex= 0; protected void ddlroles_selectedindexchanged(object sender,eventargs e) { protected void rblposition_selectedindexchanged(object sender,eventargs e) {switch((sender as RadioButtonList).SelectedIndex) {case 0: ddlroles.items.clear(); ddlroles.items.add("analyst"); ddlroles.items.add("designer"); break; case 1: ddlroles.items.clear(); ddlroles.items.add("chief executive officer"); ddlroles.items.add("project manager"); break; case 2: ddlroles.items.clear(); ddlroles.items.add("unlimited"); break; }//switch. } } In the Solution Explorer pane: Right-click the w25emplo node Add New Item Skin File Add Accept adding of the App_Themes folder, and then the App_Themes\Skin1\Skin1.skin file. Alternatively you could do: Right-click the w25emplo project node (the one below the solution node) Add New Folder, Add ASP.NET Folder Theme. The Theme1 node appears in the Solution Explorer pane. Right-click the Theme1 node New Item Skin File Add. We are switched to the Skin1.skin file.

5 At the end of the Skin1.skin file, add the following code, to make it look like: <%-- Default skin template. The following skins are provided as examples only. 1. Named control skin. The SkinId should be uniquely defined because duplicate SkinId's per control type are not allowed in the same theme. <asp:gridview runat="server" SkinId="gridviewSkin" BackColor="White" > <AlternatingRowStyle BackColor="Blue" /> </asp:gridview> 2. Default skin. The SkinId is not defined. Only one default control skin per control type is allowed in the same theme. <asp:image runat="server" ImageUrl="~/images/image1.jpg" /> --%> <asp:label ForeColor="Navy" Runat="Server" Font-Bold="True"/> <asp:textbox Runat="Server" Font-Bold="True"/> <asp:radiobuttonlist Back-Color="LightBlue" ForeColor="Black" Runat="Server"/> <asp:dropdownlist ForeColor="Black" Runat="Server" Font-Bold="True"/> <asp:button BackColor="#ffff99" ForeColor="#ff0022" Runat="Server" Font-Bold="True"/> In the Default.aspx file, to the first element Page %> add: Theme= "Skin1". Ctrl +F5: Introduce data for the First-Name, Last-Name, and Year-of-birth controls. Select the president. Click the Show button. Note that the colors and font styles coincide with those set in the Skin1.skin file, which executes at run time.

6 Click the Clear button, and then the Show button: Note the presence of the validation information. Default.aspx file: Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="w25Emplo._Default" Theme= "Skin1"%> <asp:content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <asp:label ID="lbEmployees" runat="server" BackColor="White" Font-Bold="True" Font-Size="Medium" ForeColor="Red" style="z-index: 1; left: 240px; top: 34px; position: absolute" Text="Employees"> </asp:label> <asp:label ID="lbFirstName" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 12px; top: 93px; position: absolute" Text="First-Name="></asp:Label> <asp:textbox ID="txbFirstName" runat="server" style="z-index: 1; left: 91px; top: 90px; position: absolute; width: 95px"> </asp:textbox> <asp:label ID="lbLastName" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 200px; top: 93px; position: absolute" Text="Last-Name="></asp:Label> <asp:textbox ID="txbLastName" runat="server" style="z-index: 1; left: 277px; top: 90px; position: absolute; width: 95px"></asp:TextBox> <asp:label ID="lbYear" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 387px; top: 93px; position: absolute" Text="Year-of-birth="></asp:Label> <asp:textbox ID="txbYear" runat="server" style="z-index: 1; left: 477px; top: 90px; position: absolute; width: 95px" Font-Bold="True">1955</asp:TextBox> <asp:label ID="lbPosition" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 14px; top: 130px; position: absolute" Text="Position="></asp:Label>

7 <asp:radiobuttonlist ID="rblPosition" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 80px; top: 130px; position: absolute; height: 26px; width: 90px; right: 683px" Font-Bold="True" AutoPostBack="True" onselectedindexchanged="rblposition_selectedindexchanged"> <asp:listitem Selected="True">worker</asp:ListItem> <asp:listitem>boss</asp:listitem> <asp:listitem>president</asp:listitem> </asp:radiobuttonlist> <asp:label ID="lbRoles" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 190px; top: 130px; position: absolute" Text="Role="></asp:Label> <asp:dropdownlist ID="ddlRoles" runat="server" BackColor="White" ForeColor="Red" style="z-index: 1; left: 231px; top: 129px; position: absolute; height: 25px; width: 180px" Font-Bold="True" AutoPostBack="True" onselectedindexchanged="ddlroles_selectedindexchanged"> </asp:dropdownlist> <asp:button ID="btnShow" runat="server" BackColor="White" Font-Bold="True" ForeColor="Red" style="z-index: 1; left: 12px; top: 210px; position: absolute" Text="Show" onclick="btnshow_click" /> <asp:button ID="btnClear" runat="server" BackColor="White" Font-Bold="True" ForeColor="Red" style="z-index: 1; left: 80px; top: 210px; position: absolute" Text="Clear" CausesValidation="False" onclick="btnclear_click" /> <asp:textbox ID="txbResult" runat="server" style="z-index: 1; left: 12px; top: 240px; position: absolute; width: 560px" Font-Bold="False" ReadOnly="True"></asp:TextBox> <asp:requiredfieldvalidator ID="rfvFirstName" runat="server" ErrorMessage="First Name required" ForeColor="#FF0066" style="z-index: 1; left: 62px; top: 72px; position: absolute" ControlToValidate="txbFirstName" Font-Bold="True"> </asp:requiredfieldvalidator> <asp:requiredfieldvalidator ID="rfvLastName" runat="server" ErrorMessage="Last Name required" ForeColor="#FF0066" style="z-index: 1; left: 249px; top: 72px; position: absolute" ControlToValidate="txbLastName" Font-Bold="True"> </asp:requiredfieldvalidator> <asp:requiredfieldvalidator ID="rfvYear" runat="server" ErrorMessage="Year Of Birth required" ForeColor="#FF0066" style="z-index: 1; left: 432px; top: 72px; position: absolute" ControlToValidate="txbYear" Font-Bold="True"> </asp:requiredfieldvalidator> <asp:regularexpressionvalidator ID="revYear" runat="server" ControlToValidate="txbYear" ErrorMessage="Year required, e.g. 1955" Font-Bold="True" ForeColor="#FF0066" style="z-index: 1; left: 424px; top: 58px; position: absolute" ValidationExpression="\s*\d{4}\s* \s*[+-]\s*\d{4}\s*.?\s*"> </asp:regularexpressionvalidator> <asp:validationsummary ID="vsummary" runat="server" style="z-index: 1; left: 379px; top: 166px; position: absolute; height: 54px; width: 187px; " Font-Bold="True" ForeColor="#FF0066" /> </asp:content>

This tutorial assumes that you are familiar with ASP.Net and ActiveX controls.

This tutorial assumes that you are familiar with ASP.Net and ActiveX controls. ASP.Net with Iocomp ActiveX controls This tutorial assumes that you are familiar with ASP.Net and ActiveX controls. Steps to host an Iocomp ActiveX control in an ASP.NET page using Visual Studio 2003 The

More information

SQL Server Database Web Applications

SQL Server Database Web Applications SQL Server Database Web Applications Microsoft Visual Studio (as well as Microsoft Visual Web Developer) uses a variety of built-in tools for creating a database-driven web application. In addition to

More information

Walkthrough: Creating and Using an ASP.NET Web Service in Visual Web Developer

Walkthrough: Creating and Using an ASP.NET Web Service in Visual Web Developer http://msdn.microsoft.com/en-us/library/8wbhsy70.aspx Walkthrough: Creating and Using an ASP.NET Web Service in Visual Web Developer In addition to letting you create Web pages, Microsoft Visual Studio

More information

Real-World ASP.NET: Building a Content Management System

Real-World ASP.NET: Building a Content Management System Apress Books for Professionals by Professionals Real-World ASP.NET: Building a Content Management System by Stephen R.G. Fraser ISBN # 1-59059-024-4 Copyright 2001 Apress, L.P., 2460 Ninth St., Suite 219,

More information

ASP.NET Dynamic Data

ASP.NET Dynamic Data 30 ASP.NET Dynamic Data WHAT S IN THIS CHAPTER? Building an ASP.NET Dynamic Data application Using dynamic data routes Handling your application s display ASP.NET offers a feature that enables you to dynamically

More information

How To Create A Website Template On Sitefinity 4.0.2.2

How To Create A Website Template On Sitefinity 4.0.2.2 DESIGNER S GUIDE This guide is intended for front-end developers and web designers. The guide describes the procedure for creating website templates using Sitefinity and importing already created templates

More information

X. Apéndice C. Listado de Códigos.

X. Apéndice C. Listado de Códigos. X. Apéndice C. Listado de Códigos. 10.1 Version2.aspx

More information

An Empirical Study of NoSQL Databases by Using MongoDB Databases

An Empirical Study of NoSQL Databases by Using MongoDB Databases An Empirical Study of NoSQL Databases by Using MongoDB Databases Wen-Chen Hu Department of Computer Science University of North Dakota Grand Forks, ND 58202 wenchen@cs.und.edu Naima Kaabouch Department

More information

TS: Microsoft.NET Framework 3.5, ASP.NET Application Development

TS: Microsoft.NET Framework 3.5, ASP.NET Application Development Exam : 70-562 Title : TS: Microsoft.NET Framework 3.5, ASP.NET Application Development Version : Demo 1 / 14 1.You create a Microsoft ASP.NET application by using the Microsoft.NET Framework version 3.5.

More information

Bookstore Application: Client Tier

Bookstore Application: Client Tier 29 T U T O R I A L Objectives In this tutorial, you will learn to: Create an ASP.NET Web Application project. Create and design ASPX pages. Use Web Form controls. Reposition controls, using the style attribute.

More information

Security API Cookbook

Security API Cookbook Sitecore CMS 6 Security API Cookbook Rev: 2010-08-12 Sitecore CMS 6 Security API Cookbook A Conceptual Overview for CMS Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 User, Domain,

More information

How To Control Asp.Net Html And Html On A Pc Or Mac Or Mac (For Mac) On A Web Browser On A Mac Or Pc Or Pc (For Pc Or Ipad) On Pc Or Microsoft Mac Or Ipa (

How To Control Asp.Net Html And Html On A Pc Or Mac Or Mac (For Mac) On A Web Browser On A Mac Or Pc Or Pc (For Pc Or Ipad) On Pc Or Microsoft Mac Or Ipa ( Vakgroep ICT Webprogrammatie ASP.NET BASICS 2012 Rogier van der Linde HTML Controls en Web Controls HTML controls dienen voor de snelle omzetting van bestaande HTML pagina s, Web controls zijn veel flexibeler.

More information

Apprenda.NET Developer Tutorial

Apprenda.NET Developer Tutorial Apprenda.NET Developer Tutorial Audience This tutorial document is intended for developers of.net applications that wish to publish them on the Apprenda Platform. It is expected that the developer is proficient

More information

Working with Data in ASP.NET 2.0 :: Paging and Sorting Report Data Introduction. Step 1: Adding the Paging and Sorting Tutorial Web Pages

Working with Data in ASP.NET 2.0 :: Paging and Sorting Report Data Introduction. Step 1: Adding the Paging and Sorting Tutorial Web Pages 1 of 18 This tutorial is part of a set. Find out more about data access with ASP.NET in the Working with Data in ASP.NET 2.0 section of the ASP.NET site at http://www.asp.net/learn/dataaccess/default.aspx.

More information

Creating Form Rendering ASP.NET Applications

Creating Form Rendering ASP.NET Applications Creating Form Rendering ASP.NET Applications You can create an ASP.NET application that is able to invoke the Forms service resulting in the ASP.NET application able to render interactive forms to client

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program, you ll find a number of task panes, toolbars,

More information

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1

Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1 Hands-On Lab Web Development in Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: USING HTML CODE SNIPPETS IN VISUAL STUDIO 2010... 6 Task 1 Adding

More information

Step-by-Step Guide for Active Directory Federation Services

Step-by-Step Guide for Active Directory Federation Services Step-by-Step Guide for Active Directory Federation Services Microsoft Corporation Published: June 2006 Author: Nick Pierson Editor: Jim Becker Abstract This guide provides instructions for setting up Active

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

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011

Hands-On Lab. Client Workflow. Lab version: 1.0.0 Last updated: 2/23/2011 Hands-On Lab Client Workflow Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: DEFINING A PROCESS IN VISIO 2010... 4 Task 1 Define the Timesheet Approval process... 4 Task 2

More information

NSD1168 How to Install One Time Password Server Prefetch ASP.NET Web Application on IIS 6

NSD1168 How to Install One Time Password Server Prefetch ASP.NET Web Application on IIS 6 NSD1168 How to Install One Time Password Server Prefetch ASP.NET Web Application on IIS 6 Fact Nordic Edge One Time Password Server, IIS 6, Prefetch ASP.NET Web Application Situation Installing the One

More information

Tutorial #1: Getting Started with ASP.NET

Tutorial #1: Getting Started with ASP.NET Tutorial #1: Getting Started with ASP.NET This is the first of a series of tutorials that will teach you how to build useful, real- world websites with dynamic content in a fun and easy way, using ASP.NET

More information

Building A Very Simple Website

Building A Very Simple Website Sitecore CMS 6.5 Building A Very Simple Web Site Rev 110715 Sitecore CMS 6.5 Building A Very Simple Website A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Creating

More information

Basics of Microsoft Outlook/Email. Microsoft Outlook

Basics of Microsoft Outlook/Email. Microsoft Outlook Basics of Microsoft Outlook/Email Microsoft Outlook Workshop Outline for Improve Your Outlook Microsoft Outlook Contents Starting the application... 3 The Outlook 2010 window... 3 Expanding and minimizing

More information

Introduction to ASP.NET Web Development Instructor: Frank Stepanski

Introduction to ASP.NET Web Development Instructor: Frank Stepanski Introduction to ASP.NET Web Development Instructor: Frank Stepanski Overview From this class, you will learn how to develop web applications using the Microsoft web technology ASP.NET using the free web

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

.NET Best Practices Part 1 Master Pages Setup. Version 2.0

.NET Best Practices Part 1 Master Pages Setup. Version 2.0 .NET Best Practices Part 1 Master Pages Setup Version 2.0 2014 CrownPeak Technology, Inc. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

WebAppDevelopment with ASP.NET: A Deeper Look

WebAppDevelopment with ASP.NET: A Deeper Look WebAppDevelopment with ASP.NET: A Deeper Look 29 If any man will draw up his case, and put his name at the foot of the first page, I will give him an immediate reply. Where he compels me to turn over the

More information

(Ch: 1) Building ASP.NET Pages. A. ASP.NET and the.net Framework B. Introducing ASP.NET Controls C. Adding Application logic to an ASP.

(Ch: 1) Building ASP.NET Pages. A. ASP.NET and the.net Framework B. Introducing ASP.NET Controls C. Adding Application logic to an ASP. (Ch: 1) Building ASP.NET Pages A. ASP.NET and the.net Framework B. Introducing ASP.NET Controls C. Adding Application logic to an ASP.NET Page D. the structure of an ASP.NET Page ASP.NET and the.net Framework

More information

wpf5concat Start Microsoft Visual Studio. File New Project WPF Application, Name= wpf5concat OK.

wpf5concat Start Microsoft Visual Studio. File New Project WPF Application, Name= wpf5concat OK. Start Microsoft Visual Studio. wpf5concat File New Project WPF Application, Name= wpf5concat OK. The Solution Explorer displays: Solution wpf5concat, wpf5concat, Properties, References, App.xaml, MainWindow.xaml.

More information

Crystal Reports. For Visual Studio.NET. Reporting Off ADO.NET Datasets

Crystal Reports. For Visual Studio.NET. Reporting Off ADO.NET Datasets Crystal Reports For Visual Studio.NET Reporting Off ADO.NET Datasets 2001 Crystal Decisions, Inc. Crystal Decisions, Crystal Reports, and the Crystal Decisions logo are registered trademarks or trademarks

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

HOUR 3 Creating Our First ASP.NET Web Page

HOUR 3 Creating Our First ASP.NET Web Page HOUR 3 Creating Our First ASP.NET Web Page In the last two hours, we ve spent quite a bit of time talking in very highlevel terms about ASP.NET Web pages and the ASP.NET programming model. We ve looked

More information

Introduction to ASP.NET and Web Forms

Introduction to ASP.NET and Web Forms Introduction to ASP.NET and Web Forms This material is based on the original slides of Dr. Mark Sapossnek, Computer Science Department, Boston University, Mosh Teitelbaum, evoch, LLC, and Joe Hummel, Lake

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

1. Tutorial - Developing websites with Kentico 8... 3 1.1 Using the Kentico interface... 3 1.2 Managing content - The basics... 4 1.2.

1. Tutorial - Developing websites with Kentico 8... 3 1.1 Using the Kentico interface... 3 1.2 Managing content - The basics... 4 1.2. Kentico 8 Tutorial Tutorial - Developing websites with Kentico 8.................................................................. 3 1 Using the Kentico interface............................................................................

More information

Lab 8: ASP.NET 2.0 Configuration API and Health Monitoring

Lab 8: ASP.NET 2.0 Configuration API and Health Monitoring Lab 8: ASP.NET 2.0 Configuration API and Health Monitoring Estimated time to complete this lab: 45 minutes ASP.NET 2.0 s configuration API fills a hole in ASP.NET 1.x by providing an easy-to-use and extensible

More information

Chapter 1 Introduction to web development and PHP

Chapter 1 Introduction to web development and PHP Chapter 1 Introduction to web development and PHP Murach's PHP and MySQL, C1 2010, Mike Murach & Associates, Inc. Slide 1 Objectives Applied 1. Use the XAMPP control panel to start or stop Apache or MySQL

More information

Creating Basic HTML Forms in Microsoft FrontPage

Creating Basic HTML Forms in Microsoft FrontPage Creating Basic HTML Forms in Microsoft FrontPage Computer Services Missouri State University http://computerservices.missouristate.edu 901 S. National Springfield, MO 65804 Revised: June 2005 DOC090: Creating

More information

VB.NET - WEB PROGRAMMING

VB.NET - WEB PROGRAMMING VB.NET - WEB PROGRAMMING http://www.tutorialspoint.com/vb.net/vb.net_web_programming.htm Copyright tutorialspoint.com A dynamic web application consists of either or both of the following two types of

More information

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun (cmjaun@us.ibm.com) Sudha Piddaparti (sudhap@us.ibm.com) Objective In this

More information

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences Unit 4 Introduction to Spreadsheet and Database, pages 1 of 12 Department of Computer and Mathematical Sciences CS 1305 Intro to Computer Technology 15 Module 15: Introduction to Microsoft Access Objectives:

More information

New Features in Outlook Web Access

New Features in Outlook Web Access New Features in Feature and functionality Logon Screen Navigation Description User logon screen for Navigation in resembles navigation in Microsoft Office Outlook 2007. Drag-and-Drop Move items by dragging

More information

O UTLOOK 2003 HELP SHEET MAIL. Opening the program. Mail

O UTLOOK 2003 HELP SHEET MAIL. Opening the program. Mail O UTLOOK 2003 HELP SHEET MAIL Opening the program At Work Double-click the icon on your desktop. Or click the Start button. If this icon is displayed, click on it. If it is not displayed, click Start,

More information

The VB development environment

The VB development environment 2 The VB development environment This chapter explains: l how to create a VB project; l how to manipulate controls and their properties at design-time; l how to run a program; l how to handle a button-click

More information

ASP.NET and Web Forms

ASP.NET and Web Forms ch14.fm Page 587 Wednesday, May 22, 2002 1:38 PM F O U R T E E N ASP.NET and Web Forms 14 An important part of.net is its use in creating Web applications through a technology known as ASP.NET. Far more

More information

Using Webmail. Technical Manual: User Guide. Document Updated: 1/07. The Webmail Window. Displaying and Hiding the Full Header.

Using Webmail. Technical Manual: User Guide. Document Updated: 1/07. The Webmail Window. Displaying and Hiding the Full Header. Using Webmail Technical Manual: User Guide The Webmail Window To save an attachment: 1. Click once on the attachment name. Or, if there are multiple attachments, click the Save icon to save all attachments

More information

Using vcloud Express and Infrastructure as a Service (IaaS) By Dave Peru, May 2012 (www.dperu.com, dave@dperu.com)

Using vcloud Express and Infrastructure as a Service (IaaS) By Dave Peru, May 2012 (www.dperu.com, dave@dperu.com) Using vcloud Express and Infrastructure as a Service (IaaS) By Dave Peru, May 2012 (www.dperu.com, dave@dperu.com) 1.0 Introduction, Cloud Services Defined What is a Infrastructure as a Service (IaaS)?

More information

Junk E-mail Settings. Options

Junk E-mail Settings. Options Outlook 2003 includes a new Junk E-mail Filter. It is active, by default, and the protection level is set to low. The most obvious junk e-mail messages are caught and moved to the Junk E-Mail folder. Use

More information

Microsoft Outlook 2010 Part 1: Introduction to Outlook

Microsoft Outlook 2010 Part 1: Introduction to Outlook CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Outlook 2010 Part 1: Introduction to Outlook Spring 2015, Version 1.4 Table of Contents Introduction...3 Starting Outlook...3

More information

Capturx for SharePoint 2.0: Notification Workflows

Capturx for SharePoint 2.0: Notification Workflows Capturx for SharePoint 2.0: Notification Workflows 1. Introduction The Capturx for SharePoint Notification Workflow enables customers to be notified whenever items are created or modified on a Capturx

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual

More information

Microsoft Outlook 2010 Part 1: Introduction to Outlook

Microsoft Outlook 2010 Part 1: Introduction to Outlook CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Outlook 2010 Part 1: Introduction to Outlook Spring 2012, Version 1.0 Table of Contents Introduction...3 Starting the

More information

Outlook Web App OWA. Let s take a look at the new features and functionality available on OWA. Feature & Functionality Description User experience

Outlook Web App OWA. Let s take a look at the new features and functionality available on OWA. Feature & Functionality Description User experience Outlook Web App OWA Let s take a look at the new features and functionality available on OWA. Feature & Functionality Description User experience Logon Screen User logon screen for Outlook Web App (OWA)

More information

Website Editor User Guide

Website Editor User Guide CONTENTS Minimum System Requirements... 3 Design Your Website... 3 Choosing your Theme... 4 Choosing your Header Style... 4-5 Website Content Editor... 6 Text Editor Toolbar features... 6 Main Menu Items...

More information

darlingharbour.com Content Management System Tenant User Guide

darlingharbour.com Content Management System Tenant User Guide darlingharbour.com Content Management System Tenant User Guide August 2014 Table of Contents 1 Introduction... 1 2 Getting started... 1 2.1 Requirements...1 2.2 Logging in...1 2.3 Change your Password...2

More information

Sample Chapters. To learn more about this book visit Microsoft Learning at: http://go.microsoft.com/fwlink/?linkid=206094

Sample Chapters. To learn more about this book visit Microsoft Learning at: http://go.microsoft.com/fwlink/?linkid=206094 Sample Chapters Copyright 2010 by Tony Northrup and Mike Snell. All rights reserved. To learn more about this book visit Microsoft Learning at: http://go.microsoft.com/fwlink/?linkid=206094 Contents Acknowledgments

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

USER GUIDE Appointment Manager

USER GUIDE Appointment Manager 2011 USER GUIDE Appointment Manager 0 Suppose that you need to create an appointment manager for your business. You have a receptionist in the front office and salesmen ready to service customers. Whenever

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

MICROSOFT OUTLOOK 2011 SEND AND RESPOND TO E-MAILS

MICROSOFT OUTLOOK 2011 SEND AND RESPOND TO E-MAILS MICROSOFT OUTLOOK 2011 SEND AND RESPOND TO E-MAILS Lasted Edited: 2012-07-10 1 Send E-mail... 3 Create a new message... 3 Change the signature in the e-mail body,... 4 Change the sending out e-mail account...

More information

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

More information

Apprenda SaaS Developer Tutorial

Apprenda SaaS Developer Tutorial Apprenda SaaS Developer Tutorial Audience This tutorial document is intended for developers of Software as a Service (SaaS) applications. It is expected that the developer is proficient with the following

More information

Webmail Instruction Guide

Webmail Instruction Guide Webmail Instruction Guide This document is setup to guide your through the use of the many features of our Webmail system. You may either visit www.safeaccess.com or webmail.safeaccess.com to login with

More information

MICROSOFT OUTLOOK 2010 READ, ORGANIZE, SEND AND RESPONSE E-MAILS

MICROSOFT OUTLOOK 2010 READ, ORGANIZE, SEND AND RESPONSE E-MAILS MICROSOFT OUTLOOK 2010 READ, ORGANIZE, SEND AND RESPONSE E-MAILS Last Edited: 2012-07-09 1 Read Emails... 4 Find the inbox... 4 Change new incoming e-mail notification options... 5 Read email... 6 Change

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Matière : Application Web avec C#

Matière : Application Web avec C# UNIVERSITÉ ANTONINE Faculté d ingénieurs en Informatique, Multimédia, Réseaux & Télécommunications Matière : Application Web avec C# Effectué par : NOM Prénom MATTA Elie et al. INF# Privacy applied Copyright

More information

Unit 21 - Creating a Button in Macromedia Flash

Unit 21 - Creating a Button in Macromedia Flash Unit 21 - Creating a Button in Macromedia Flash Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc.

Email Basics. a. Click the arrow to the right of the Options button, and then click Bcc. Email Basics Add CC or BCC You can display the Bcc box in all new messages that you compose. In a new message, do one of the following: 1. If Microsoft Word is your e-mail editor a. Click the arrow to

More information

FrontPage 2003: Forms

FrontPage 2003: Forms FrontPage 2003: Forms Using the Form Page Wizard Open up your website. Use File>New Page and choose More Page Templates. In Page Templates>General, choose Front Page Wizard. Click OK. It is helpful if

More information

Outlook Web Access (OWA) User Guide

Outlook Web Access (OWA) User Guide Outlook Web Access (OWA) User Guide September 2010 TABLE OF CONTENTS TABLE OF CONTENTS... 2 1.0 INTRODUCTION... 4 1.1 OUTLOOK WEB ACCESS SECURITY CONSIDERATIONS... 4 2.0 GETTING STARTED... 5 2.1 LOGGING

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

Create a Poster Using Publisher

Create a Poster Using Publisher Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs

More information

Tutorial: Creating a form that emails the results to you.

Tutorial: Creating a form that emails the results to you. Tutorial: Creating a form that emails the results to you. 1. Create a new page in your web site Using the Wizard Interface. a) Choose I want to add a form that emails the results to me in the wizard. b)

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

More information

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS

App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS App Development for Modern UI MODULE 4: APP DEVELOPMENT ESSENTIALS Module 4: App Development Essentials Windows, Bing, PowerPoint, Internet Explorer, Visual Studio, WebMatrix, DreamSpark, and Silverlight

More information

Sense/Net ECM Evaluation Guide. How to build a products listing site from the scratch?

Sense/Net ECM Evaluation Guide. How to build a products listing site from the scratch? Sense/Net ECM Evaluation Guide How to build a products listing site from the scratch? Contents 1 Basic principles... 4 1.1 Everything is a content... 4 1.2 Pages... 5 1.3 Smart application model... 5 1.4

More information

Making a Web Page with Microsoft Publisher 2003

Making a Web Page with Microsoft Publisher 2003 Making a Web Page with Microsoft Publisher 2003 The first thing to consider when making a Web page or a Web site is the architecture of the site. How many pages will you have and how will they link to

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

http://expression.microsoft.com/en-us/dd571513(printer).aspx

http://expression.microsoft.com/en-us/dd571513(printer).aspx Page 1 of 6 2009 Microsoft Corporation. All rights reserved. Create a Database Search Page Using Expression Web Authors:Clark Kurtz [ http://social.expression.microsoft.com/en-us/profile/?user=clarknk

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Sitecore InDesign Connector 1.1

Sitecore InDesign Connector 1.1 Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page

More information

How To Develop A Mobile Application On Sybase Unwired Platform

How To Develop A Mobile Application On Sybase Unwired Platform Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 DOCUMENT ID: DC01285-01-0210-01 LAST REVISED: December 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication

More information

Foundation ASP.NET for Flash. Ryan Moore

Foundation ASP.NET for Flash. Ryan Moore Foundation ASP.NET for Flash Ryan Moore Foundation ASP.NET for Flash Copyright 2006 by Ryan Moore All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means,

More information

Create Email Signature for the Scott County Family Y

Create Email Signature for the Scott County Family Y Create Email Signature for the Scott County Family Y This document details the procedure for creating the Y logo ed email signature for each of the email clients used at the Scott County Family Y Use the

More information

Website Builder Documentation

Website Builder Documentation Website Builder Documentation Main Dashboard page In the main dashboard page you can see and manager all of your projects. Filter Bar In the filter bar at the top you can filter and search your projects

More information

Intro to Web Development

Intro to Web Development Intro to Web Development For this assignment you will be using the KompoZer program because it free to use, and we wanted to keep the costs of this course down. You may be familiar with other webpage editing

More information

Outlook 2010 Essentials

Outlook 2010 Essentials Outlook 2010 Essentials Training Manual SD35 Langley Page 1 TABLE OF CONTENTS Module One: Opening and Logging in to Outlook...1 Opening Outlook... 1 Understanding the Interface... 2 Using Backstage View...

More information

MicroStrategy Quick Guide: Creating Prompts ITU Data Mart Support Group, Reporting Services

MicroStrategy Quick Guide: Creating Prompts ITU Data Mart Support Group, Reporting Services MicroStrategy Quick Guide: Creating Prompts ITU Data Mart Support Group, Reporting Services Prompts Prompts are questions the report user must answer in order to run the report. Some prompts are required

More information

C#.NET 4: Web Development and User Interface Design Using.NET

C#.NET 4: Web Development and User Interface Design Using.NET C# NET 4: Web Development and User Interface Design Using NET Lesson 1: Int ro duct io n and Web Develo pment Overview Understanding the Learning Sandbo x Enviro nment Co de Snippets The OST Plug-In Web

More information

CA Gen. ASP.NET User Guide. Release 8.5

CA Gen. ASP.NET User Guide. Release 8.5 CA Gen ASP.NET User Guide Release 8.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

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

Changing the Default Email Delivery Location

Changing the Default Email Delivery Location NCMail: Microsoft Outlook 2003 Changing the Default Email Delivery Location Revision 1.2 12/27/2007 This document covers changing the default email delivery location in Microsoft Outlook 2003. In order

More information

SEO Optimization A Developer s Role

SEO Optimization A Developer s Role Copyright 2010. www.anubavam.com. All Rights Reserved. Page 1 Contents Overview 3 What is SEO? 3 Role of a Developer in SEO 4 SEO friendly URLs 4 Page Title 5 Meta Tags 6 Page Heading 7 Amplify the First

More information

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5 Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: PERSONALIZING YOUR EMAIL... 5 TOPIC 1A: APPLY STATIONERY AND THEMES... 6 Apply Stationery and Themes... 6 TOPIC 1B: CREATE A CUSTOM

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 7 PowerPoint 2010 Home > PowerPoint 2010 Help and How-to > Getting started with PowerPoint Search help More on Office.com: images templates Basic tasks in PowerPoint 2010 Here are some basic

More information

Creating Mailing Lables in IBM Cognos 8 Report Studio

Creating Mailing Lables in IBM Cognos 8 Report Studio Tip or Technique Creating Mailing Lables in IBM Cognos 8 Report Studio Product(s): IBM Cognos 8.4 Area of Interest: Reporting Creating Mailing Lables in IBM Cognos 8 Report Studio 2 Copyright and Trademarks

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

Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups. Outlook Functions

Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups. Outlook Functions Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups Outlook Functions Clean Up: New ways to manage conversations and remove redundant emails: Email

More information