Lab 1: Create a Web Site
|
|
|
- Hannah Ray
- 9 years ago
- Views:
Transcription
1 Lab 1: Create a Web Site Estimated time to complete this lab: 60 minutes ASP.NET is loaded with new features designed to make building sophisticated Web sites easier than ever before. In this lab, you ll build a Web site which is designed to acquaint you with some of the ASP.NET 2.0 features and provide a taste of what s to come.
2 2 Lab 1: Create a Web Site Exercise 1 Create a Web site In this exercise, you ll use Visual Studio to create a new Web site. You ll also add a pair of folders to it: one for holding images, and another for holding components. Tasks 1. Create a new Web site Detailed Steps a. Start Microsoft Visual Studio. b. Select New Web Site from Visual Studio s File menu. c. In the New Web Site dialog, choose Visual or Visual Basic as the project type and Empty Web Site as the template type. Type C:\ MSLabs\ASP.NET\Starter\<language>\Lab1 into the Location box and click OK to create the Lab1 Web site. 2. Add an Images folder a. Right-click C:\..\Lab1 in the Solution Explorer window and select New Folder. If Solution Explorer isn t visible, select Solution Explorer from the View menu to display it, or press Ctrl+Alt+L.) b. Name the folder Images. c. Right-click the Images folder in Solution Explorer and select Add Existing Item. d. Navigate to the C:\MSLabs\ASP.NET\LabFiles\Images folder and select MSN.gif to add a local copy of MSN.gif to your Web site s Images folder. 3. Add an App_Code folder a. Right-click C:\..\Lab1 in the Solution Explorer window and select Add ASP.NET Folder ->App_Code.! Note that this folder named App_Code allows classes to be auto compiled and generally consumable within in your ASP.NET project
3 Lab 1: Create a Web Site 3 Exercise 2 Create a master page In this exercise, you ll create a master page to serve as a template for the Web site s pages. Tasks 1. Add a master page Detailed Steps a. In the Solution Explorer window, right-click C:\..\Lab1and select Add New Item. b. In the Add New Item dialog, select Master Page and type Site.master into the Name box. Be sure Place code in separate file is checked and the appropriate language is selected in the Language box before clicking Add. 2. Add a table to the master page a. Make sure Internet Explorer 6.0 is selected in the Target Schema for Validation drop-down list on the toolbar. b. Click the Design button in the lower left corner of the designer window to switch to Design view. c. Go to the Layout menu and select Insert Table. d. In the Insert Table dialog, set Rows and Columns to 2. Check the Width box and enter 100%. Also check the Cellpadding and Cellspacing boxes and set both to 0, as shown below. Then click OK to add the table to the master page. The table should appear above the ContentPlaceHolder control. 3. Create a banner a. Drag an ASP.NET Image control from the the Toolbox and drop it into the upper left cell of the table. If the Toolbox window isn t visible, select Toolbox from the View menu or press Ctrl+Alt+X. b. Go to the Properties window and set the Image control s ImageUrl property to ~/Images/MSN.gif. If the Properties window isn t visible, select Properties Window from the View menu or press F4. c. Also in the Properties window, set the Image control s ImageAlign property to Middle. d. Position the cursor just outside the left border of the table s upper-left cell and click the grab handle to select the entire table row. e. Go to the Properties window and set the row s BgColor property to #10527B. f. Select the next table row. Set its BgColor property to Gray and Height property to 1. g. Select the table s left column. Set its Width property to 100. h. Select the table s right column. Set its Width property to 100%. (Note the percent sign!) i. Put the cursor in the table s upper-right cell and type Bookstore. j. Select the text you just typed. Use the Formatting toolbar to change the text to 48-point bold italic Verdana and set the Foreground color to White. If the Formatting toolbar isn t visible, select View -> Toolbars -> Formatting to make it visible. Afterwards, you should see this in the designer:
4 4 Lab 1: Create a Web Site
5 Lab 1: Create a Web Site 5 Exercise 3 Build the main content page Now that the master page is complete, it s time to build a content page. The first one you ll build demonstrates how quickly and with how little code you can create a data-driven Web page with ASP.NET 2.0. Tasks 1. Add a content page Detailed Steps a. Right-click C:\..\Lab1 in Solution Explorer and select Add New Item. b. Select Web Form and name it Default.aspx. Check the Place code in separate file and Select master page boxes and make sure the appropriate language is selected in the Language box before clicking Add. c. In the ensuing Select a Master Page window, select Site.master the master page you built in the previous exercise and click OK. d. Examine directive at the top of Default.aspx. Notice the MasterPageFile attribute. e. Click the Design button to switch to Design view. Notice that designer shows the content inherited from the master page, but shades it to indicate that it s not defined in the content page itself. 2. Add a SqlDataSource control a. Press the Smart Tag on upper right of content area and select Default to Master s Content option on the menu. Content on the page can be Custom (default) or come from the Master. Now press the Smart Tag on upper right of content area and select Create Custom Content b. Drag a SqlDataSource control (you ll find it in the Toolbox s Data section) onto the page and drop it into the Content control. c. Click Configure Data Source in the SqlDataSource Tasks menu (see below). d. When the Configure Data Source dialog pops up, click the New Connection button to create a new database connection. e. If the Choose Data Source dialog appears, select Microsoft SQL Server in the Data source list and click Continue. f. In the Add Connection dialog, type localhost into the Server name box and select Use Windows Authentication. Then select Pubs under Select or enter a database name and click OK. g. Make sure the new connection is selected in the What data connection should your application use to connect to the database? box. Then click Next. h. Make sure Yes, save this connection as is checked and click Next to proceed. i. In the ensuing dialog, select titles in the drop-down list labeled Name. In the Columns box, check title, price, and notes as shown below. Then click Next to proceed. j. Click Finish to finish configuring the SqlDataSource. 3. Add a GridView control a. Drag a GridView control onto the page and drop it underneath the SqlDataSource control. b. In the GridView Tasks menu, select SqlDataSource1 from the Choose Data Source
6 6 Lab 1: Create a Web Site list to bind the GridView to the SqlDataSource. c. Use the Auto Format command in GridView Tasks to apply the Rainy Day format to the GridView. d. Click Edit Columns in the GridView Tasks Smart Tag. e. In the Selected fields list select the column named price. Set its DataFormatString property to {0:c} and its ItemStyle-HorizontalAlign property to Right. Click OK. f. Click Add New Column in the GridView Tasks Smart Tag. g. Select CheckBoxField in the Choose a field type list and fill in the remaining fields of the Add Field dialog as pictured below. Then click OK. h. Click Edit Columns in the Common GridView Tasks menu. i. Select the add to cart column that you just added and click Convert this field into a TemplateField. Then set the column s ItemStyle-HorizontalAlign property to Center and click OK. j. Check the Enable Sorting box in the GridView Tasks menu. k. Select the GridView in the designer and use the Properties window to set its Width property to 100%. l. Select Start Without Debugging from the Debug menu (or press Ctrl+F5) to launch Default.aspx in a browser window. Verify that the output looks something like this:
7 Lab 1: Create a Web Site 7 m. Sort the GridView by clicking one of the sortable column headers. Also verify that clicking the same header several times in succession performs alternating ascending and descending sorts. n. Close the browser and return to Visual Studio.
8 8 Lab 1: Create a Web Site Exercise 4 Build the check-out page In this exercise, you ll build a check-out page that lists the items selected in the GridView on the previous page and asks for a credit card number. You ll see first-hand how cross-page postbacks work and how a page that s the target of a cross-page postback can communicate with the page that posted to it. You ll also build a simple component that validates credit card numbers and allow ASP.NET to autocompile it. Tasks 1. Add a content page Detailed Steps a. Right-click C:\..\Lab1 in Solution Explorer and select Add New Item. b. Select Web Form and name it CheckOut.aspx. Make sure the Place code in separate file and Select master page boxes are checked before clicking Add. c. Select Site.master as the master page. d. Add the following directive below the Page Directive. <%@ PreviousPageType VirtualPath="~/Default.aspx" %> e. Click the Design button to switch to Design view. 2. Add content to the page a. Add a pair of text strings, a BulletedList control, a TextBox control, and a Button control to the page s Content control, approximating the layout shown below. The layout pictured here uses 14-point bold Verdana for the text strings and 12-point bold Verdana for the BulletedList control. Use the Formatting toolbar to set the font on the text strings, and the Properties window to set the font on the BulletedList. To set the font size to 12-point on the latter, you ll need to type 12pt into the Size box under Font. b. Double-click the page in the designer to add a Page_Load method. c. Add the following code to Page_Load to bind the BulletedList to an ArrayList containing the titles of the books selected on the previous page. Note the use of the PreviousPage property to call a public method on the page that posted to this one: if (PreviousPage!= null && PreviousPage.IsCrossPagePostBack) { BulletedList1.DataSource = ((_Default) PreviousPage).GetTitles (); BulletedList1.DataBind (); } If Not (PreviousPage Is Nothing) AndAlso PreviousPage.IsCrossPagePostBack Then BulletedList1.DataSource = CType(PreviousPage, _Default).GetTitles BulletedList1.DataBind() End If d. Add the following statement to the using or Imports statements at the top of CheckOut.aspx.cs or CheckOut.aspx.vb:
9 Lab 1: Create a Web Site 9 using System.Collections; Imports System.Collections e. Double-click Default.aspx.cs or Default.aspx.vb in Solution Explorer to open it for editing and add the following statement to the using or Imports statements at the top: using System.Collections; Imports System.Collections f. Add the following method to the Default_aspx class: public ArrayList GetTitles () { ArrayList list = new ArrayList (); foreach (GridViewRow row in GridView1.Rows) { CheckBox box = (CheckBox) row.cells[3].controls[1]; if (box.checked) list.add (row.cells[0].text); } return list; } Public Function GetTitles() As ArrayList Dim list As ArrayList = New ArrayList() For Each row As GridViewRow In GridView1.Rows Dim box As CheckBox = _ CType(row.Cells(3).Controls(1), CheckBox) If (box.checked) Then list.add(row.cells(0).text) End If Next Return list End Function g. Return to design view in Default.aspx. h. Add a button below the GridView and set the properties of Text to Checkout >> and PostBackURL to CheckOut.aspx: i. Click Default.aspx in the Solution Explorer window and press Ctrl+F5 to launch it. j. Check a few of the boxes in the GridView and click the Check Out button at the bottom of the page. Verify that CheckOut.aspx appears and accurately lists the items you selected: k. Close the browser and return to Visual Studio. 3. Add a CreditCard component a. In the Solution Explorer window, right click the App_Code folder and select Add New Item. b. Select Class as the template type and type CreditCard into the Name box. Because this source code file is located in the App_Code folder, it will be autocompiled by ASP.NET. c. Add the following method to the CreditCard class. It validates a credit card number by
10 10 Lab 1: Create a Web Site ensuring that it s 16 digits long: public static bool IsValid (string number) { return (number.length == 16) && System.Text.RegularExpressions.Regex.IsMatch(number, ^(\\d{16}) ); } Public Shared Function IsValid( _ ByVal number As String) As Boolean Return (number.length = 16 And _ System.Text.RegularExpressions. _ Regex.IsMatch(number, ^(\d{16}) )) End Function d. Go back to the designer and open CheckOut.aspx in Design view. Double-click the Place Order button to write a click handler for it. e. Add the following code to the Button1_Click method if (CreditCard.IsValid(TextBox1.Text)) Response.Redirect("ThankYou.aspx"); else ClientScript.RegisterStartupScript( script.gettype(),"error", script); If CreditCard.IsValid(TextBox1.Text) Then Response.Redirect("ThankYou.aspx") Else ClientScript.RegisterStartupScript( _ script.gettype(),"error", script) End If f. Add the following field to the CheckOut_aspx class: static readonly string script = "<script language=\"javascript\">\n" + "alert (\"Sorry, but we couldn't validate your" + " credit card\");\n" +"</script>"; Private Shared ReadOnly script As String = _ "<script language=""javascript"">" & vbcrlf & _ "alert (""Sorry, but we couldn't validate your" & _ " credit card"");" & vbcrlf & "</script>" g. Run Default.aspx. Select a few items in the GridView and click the Check Out button. Type into the credit card box and click Place Order. The following error message should appear in a popup message box. h. Dismiss the message box. Then close the browser and return to Visual Studio.
11 Lab 1: Create a Web Site 11
12 12 Lab 1: Create a Web Site Exercise 5 Build the thank-you page All that remains now is to build the content page that the Place Order button redirects to following a successful credit card validation. In this exercise, you ll build that page and then test the finished application.. Tasks Detailed Steps 1. Add a content page a. Right-click C:\..\Lab1 in Solution Explorer and select Add New Item. b. Select Web Form and name it ThankYou.aspx. Check the Place code in separate file and Select master page boxes before clicking Add. c. Select Site.master as the master page. d. Click the Design button to switch to Design view. e. Position the cursor in the page s Content control and type Thank you for using MSN Bookstore! f. Modify the text you just typed to use a bold italic 14-point Verdana font. 2. Test the finished application a. Select Default.aspx in the Solution Explorer window and press Ctrl+F5 to launch it. b. Check a few of the boxes in the GridView and click the Check Out button. c. Type into the credit card box and click the Place Order button. d. Verify that ThankYou.aspx appears and displays the message shown below: e. Close the browser and return to Visual Studio.
13 Lab 1: Create a Web Site 13 Exercise 6 Use the Web Site Administration Tool Another of the new features in ASP.NET is the Web Site Administration Tool. In ASP.NET 1.x, you change configuration settings by hand-modifying CONFIG files. In ASP.NET 2.0, most configuration changes can be made through the Web Site Administration Tool. The tool is built on top of the new configuration API, which we ll explore in detail in a subsequent course module. In this exercise, you ll use the Web Site Administration Tool to make a simple configuration change to your Web site. Tasks 1. Start the Web Site Administration Tool Detailed Steps a. Select ASP.NET Configuration from Visual Studio s Website menu. After a brief pause, the following page appears in the IDE: NOTE: The Website->ASP.NET Configuration command launches the Web Site Administration Tool inside the Visual Studio IDE. Outside Visual Studio, you can launch the Web Site Administration Tool by pointing your browser to where... targets a virtual directory containing an ASP.NET application. Webadmin.axd isn t a file; it s a phantom resource mapped to an HTTP handler that redirects to the Web Site Administration Tool on the Web server. 2. Toggle the debug setting a. Click the Application tab at the top of the page, or the Application Configuration link in the body of the page. b. Click Configure debugging and tracing. c. Double-click C:\MSLabs\Web\Starter\<language>\Lab1\web.config in Solution Explorer to open the file. Read the <compilation> element and make a mental note of what it says. d. Return to the Web Site Administration Tool without closing Web.config and click the Enable debugging box. e. Visual Studio displays a message informing you that Web.config has been modified outside the source editor and asks if you want to reload it. Click the Yes button. f. Go back to Web.config. How has the <compilation> element changed?
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
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
SQL Server 2005: Report Builder
SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:
Visual COBOL ASP.NET Shopping Cart Demonstration
Visual COBOL ASP.NET Shopping Cart Demonstration Overview: The original application that was used as the model for this demonstration was the ASP.NET Commerce Starter Kit (CSVS) demo from Microsoft. The
Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.
Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format
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
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
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
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
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
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
Merging Labels, Letters, and Envelopes Word 2013
Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged
BID2WIN Workshop. Advanced Report Writing
BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/
How to test and debug an ASP.NET application
Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult
Google Sites. How to create a site using Google Sites
Contents How to create a site using Google Sites... 2 Creating a Google Site... 2 Choose a Template... 2 Name Your Site... 3 Choose A Theme... 3 Add Site Categories and Descriptions... 3 Launch Your Google
Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide
Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence
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)
Using the Cute Rich-Text Editor
Using the Cute Rich-Text Editor This document is designed to provide users with a basic introduction to using the Cute rich-text editor to format text, create and modify tables, and to place charts and
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
Microsoft Visual Studio 2010 Instructions For C Programs
Microsoft Visual Studio 2010 Instructions For C Programs Creating a NEW C Project After you open Visual Studio 2010, 1. Select File > New > Project from the main menu. This will open the New Project dialog
Microsoft FrontPage 2003
Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State
Using the Query Analyzer
Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object
Table of Contents. 1. Content Approval...1 EVALUATION COPY
Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling
2. Modify default.aspx and about.aspx. Add some information about the web site.
This was a fully function Shopping Cart website, which was hosted on the university s server, which I no longer can access. I received an A on this assignment. The directions are listed below for your
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.
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
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.
Appendix K Introduction to Microsoft Visual C++ 6.0
Appendix K Introduction to Microsoft Visual C++ 6.0 This appendix serves as a quick reference for performing the following operations using the Microsoft Visual C++ integrated development environment (IDE):
Introduction to Microsoft Access 2010
Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
Utilizing Microsoft Access Forms and Reports
Utilizing Microsoft Access Forms and Reports The 2014 SAIR Conference Workshop #3 October 4 th, 2014 Presented by: Nathan Pitts (Sr. Research Analyst The University of North Alabama) Molly Vaughn (Associate
Oracle Business Intelligence Publisher: Create Reports and Data Models. Part 1 - Layout Editor
Oracle Business Intelligence Publisher: Create Reports and Data Models Part 1 - Layout Editor Pradeep Kumar Sharma Senior Principal Product Manager, Oracle Business Intelligence Kasturi Shekhar Director,
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
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
Introduction to Microsoft Access 2013
Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com
User s Guide Kentico CMS 7.0 1 www.kentico.com Table of Contents Introduction... 4 Kentico CMS overview... 4 Signing in... 4 User interface overview... 6 Managing my profile... 8 Changing my e-mail and
2012 Teklynx Newco SAS, All rights reserved.
D A T A B A S E M A N A G E R DMAN-US- 01/01/12 The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject to a user
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
Umbraco v4 Editors Manual
Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...
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
-SoftChalk LessonBuilder-
-SoftChalk LessonBuilder- SoftChalk is a powerful web lesson editor that lets you easily create engaging, interactive web lessons for your e-learning classroom. It allows you to create and edit content
1.264 Lecture 19 Web database: Forms and controls
1.264 Lecture 19 Web database: Forms and controls We continue using Web site Lecture18 in this lecture Next class: ASP.NET book, chapters 11-12. Exercises due after class 1 Forms Web server and its pages
Crystal Reports Payroll Exercise
Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB
INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,
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
ACCESS 2007 BASICS. Best Practices in MS Access. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700
Information Technology MS Access 2007 Users Guide ACCESS 2007 BASICS Best Practices in MS Access IT Training & Development (818) 677-1700 Email: [email protected] Website: www.csun.edu/it/training Access
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
Creating a Web Service using IBM Rational HATS. For IBM System i (5250) Creating a Web Service using HATS 1
Creating a Web Service using IBM Rational HATS For IBM System i (5250) Creating a Web Service using HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web service that
How to create and personalize a PDF portfolio
How to create and personalize a PDF portfolio Creating and organizing a PDF portfolio is a simple process as simple as dragging and dropping files from one folder to another. To drag files into an empty
Excel 2003 Tutorial I
This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar
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
Creating a Patch Management Dashboard with IT Analytics Hands-On Lab
Creating a Patch Management Dashboard with IT Analytics Hands-On Lab Description This lab provides a hands-on overview of the IT Analytics Solution. Students will learn how to browse cubes and configure
Database Forms and Reports Tutorial
Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components
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:
SonicWALL GMS Custom Reports
SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview
bbc Creating a Purchase Order Form Adobe LiveCycle Designer ES2 November 2009 Version 9
bbc Adobe LiveCycle Designer ES2 November 2009 Version 9 2009 Adobe Systems Incorporated. All rights reserved. Adobe LiveCycle Designer ES2 (9.0) for Microsoft Windows November 2009 This tutorial is licensed
Data Tool Platform SQL Development Tools
Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6
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............................................................................
Custom Reporting System User Guide
Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe
Elisabetta Zodeiko 2/25/2012
PRINCETON UNIVERSITY Report Studio Introduction Elisabetta Zodeiko 2/25/2012 Report Studio Introduction pg. 1 Table of Contents 1. Report Studio Overview... 6 Course Overview... 7 Princeton Information
TheFinancialEdge. Crystal Reports Tutorial
TheFinancialEdge Crystal Reports Tutorial 101911 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,
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.
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
Acrobat PDF Forms - Part 2
Acrobat PDF Forms - Part 2 PDF Form Fields In this lesson, you will be given a file named Information Request Form that can be used in either Word 2003 or Word 2007. This lesson will guide you through
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
Introduction to the Visual Studio.NET IDE
2 Introduction to the Visual Studio.NET IDE Objectives To be introduced to the Visual Studio.NET Integrated Development Environment (IDE). To become familiar with the types of commands contained in the
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
ORACLE BUSINESS INTELLIGENCE WORKSHOP
ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business
Expanded contents. Section 1. Chapter 2. The essence off ASP.NET web programming. An introduction to ASP.NET web programming
TRAINING & REFERENCE murach's web programming with C# 2010 Anne Boehm Joel Murach Va. Mike Murach & Associates, Inc. I J) 1-800-221-5528 (559) 440-9071 Fax: (559) 44(M)963 [email protected] www.murach.com
Designing and Implementing Forms 34
C H A P T E R 34 Designing and Implementing Forms 34 You can add forms to your site to collect information from site visitors; for example, to survey potential customers, conduct credit-card transactions,
Outlook. Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane
Outlook Getting Started Outlook vs. Outlook Express Setting up a profile Outlook Today screen Navigation Pane Composing & Sending Email Reading & Sending Mail Messages Set message options Organizing Items
Bitrix Site Manager 4.1. User Guide
Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing
Using Microsoft Word to Create Your Theses or Dissertation
Overview Using Microsoft Word to Create Your Theses or Dissertation MsWord s style feature provides you with several options for managing the creation of your theses or dissertation. Using the style feature
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
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...
Access 2007 Creating Forms Table of Contents
Access 2007 Creating Forms Table of Contents CREATING FORMS IN ACCESS 2007... 3 UNDERSTAND LAYOUT VIEW AND DESIGN VIEW... 3 LAYOUT VIEW... 3 DESIGN VIEW... 3 UNDERSTAND CONTROLS... 4 BOUND CONTROL... 4
Creating Database Tables in Microsoft SQL Server
Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are
Business Insight Report Authoring Getting Started Guide
Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,
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
Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)
USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been
Site Configuration Mobile Entrée 4
Table of Contents Table of Contents... 1 SharePoint Content Installed by ME... 3 Mobile Entrée Base Feature... 3 Mobile PerformancePoint Application Feature... 3 Mobile Entrée My Sites Feature... 3 Site
Formatting & Styles Word 2010
Formatting & Styles Word 2010 Produced by Flinders University Centre for Educational ICT CONTENTS Layout... 1 Using the Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands
Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement ([email protected])
Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement ([email protected]) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux
Visual Studio.NET Database Projects
Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project
SPHOL207: Database Snapshots with SharePoint 2013
2013 SPHOL207: Database Snapshots with SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site
Kentico CMS 5.5 User s Guide
Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile
Kentico CMS User s Guide 5.0
Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile
RADFORD UNIVERSITY. Radford.edu. Content Administrator s Guide
RADFORD UNIVERSITY Radford.edu Content Administrator s Guide Contents Getting Started... 2 Accessing Content Administration Tools... 2 Logging In... 2... 2 Getting Around... 2 Logging Out... 3 Adding and
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
Microsoft Office Access 2007 which I refer to as Access throughout this book
Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access
Getting Started - The Control Panel
Table of Contents 1. Getting Started - the Control Panel Login Navigation Bar Domain Limits Domain User Account Properties Session Management 2. FTP Management Creating and Editing Users Accessing FTP
Microsoft Access 2010 Overview of Basics
Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create
Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide
Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick
Decision Support AITS University Administration. Web Intelligence 4.1 Reporting Basics
Decision Support AITS University Administration Web Intelligence 4.1 Reporting Basics 2 Web Intelligence 4.1: Reporting Basics Appropriate Use and Security of Confidential and Sensitive Information Due
2009 Braton Groupe sarl, All rights reserved.
D A T A B A S E M A N A G E R U S E R M A N U A L The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject to a
Toad for Data Analysts, Tips n Tricks
Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers
Instructions for Creating an Outlook E-mail Distribution List from an Excel File
Instructions for Creating an Outlook E-mail Distribution List from an Excel File 1.0 Importing Excel Data to an Outlook Distribution List 1.1 Create an Outlook Personal Folders File (.pst) Notes: 1) If
INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB
INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING If you currently create forms using Word, Excel, or even Adobe Acrobat, it s time to step up to a best-in-class form designer:
Joomla Article Advanced Topics: Table Layouts
Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand
