CST272 Getting Started Page 1

Size: px
Start display at page:

Download "CST272 Getting Started Page 1"

Transcription

1 CST272 Getting Started Page Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly the same every time the page is displayed Dynamic Web pages Allow users to interact with the Web page Changes appearance or content One tool for creating dynamic content is Microsoft s Active Server Pages.NET (ASP.NET) Used to build server-side Web applications (code statements that build the page run on the server) An ASP.NET Web Site Project In Visual Studio a Web Site is a repository (folder/storage location) that contains files and additional folders that make up the project Creating a New Web Site Project (Page 1) To create a new ASP.NET project: 1. Select the File command from the menu bar 2. Click New from the File menu 3. Click Project from the New submenu; or Creating a New Web Site Project (Page 2) Alternately to create the new project: 1. Select the down arrow point ( ) on the New Project button from the Standard toolbar 2. Click New Project from the New Project submenu Creating a New Web Site Project (Page 3) Then in the New Project dialog window: 1. Make sure to verify that Visual C# is selected in the Installed Templates pane 2. Select ASP.NET Web Application (or ASP.NET Empty Web Application the preference in CST272) template 3. Give the Web Site a Name: 4. Make sure Create directory for solution checkbox remains checked Creating a New Web Site Project (Page 4) In the New Web Site dialog window (con.): 4. Enter the project folder Location and name Click the <Browse > button to make it easier to select the folder location 5. Click the <OK> button 1

2 CST272 Getting Started Page 2 In the New ASP.NET Project dialog window, from Select a template: select option Empty and click the <OK> button (make no other changes) In the Configure Microsoft Azure Web App dialog window click the <Cancel> button An ASP.NET Web Site (Page 1) Types of files in a website: ASP.NET web forms dynamic (interactive) web forms with two files: (1) the.aspx file which is the web page; and (2) the.aspx.cs file that contains the Visual C# code that runs on the server Image files for the website Configuration files web.config is a file that provides information for the server Static HTML web pages HTML code only; no ASP.NET Server Web controls An ASP.NET Web Site (Page 2) Types of files in a web site (con.): Style sheet files additional information that tells the browser how to format HTML elements; useful for creating consistent style on a Web page, or all the Web pages on a website Script files source code that runs on the client machine in the browser, e.g. JavaScript or VbScript Database files Web Forms in ASP.NET (Page 1) The Web Form consists of two components: The HTML template (.aspx extension) The actual web page that contains the design layout, content and controls A collection of code in a procedure language such as C# that commonly is located behind the Web Form ( aspx.cs extension) The code behind the page Web Forms in ASP.NET (Page 2) The ASP.NET Form Web control handles most of the HTML detail processing for the developer The input controls are generated using ASP.NET web controls, i.e. ASP:TextBox and ASP:CheckBox The ASP:Button Web control is rendered by ASP.NET as a submit button The form is submitted when the button is clicked Web Forms in ASP.NET (Page 3) The format of the Form web control which wraps around the input elements is: <form id="formid" runat="server"> </form> This block is inserted automatically into every new ASP.NET web document 2

3 CST272 Getting Started Page Web Forms in ASP.NET (Page 4) When the Button control is clicked, the Web form is rendered as a postback <form> element (a POST method) which causes the web form to be reloaded Code (Visual C#) that should execute when the form is submitted is assigned to the Click event of the Button Additional hidden <input> elements are generated which provide information to ASP.NET Adding a New Item (Page 1) To add a new item/document to an ASP.NET project: 1. Select Project from the menu bar 2. Click Add New Item from the Website menu Or find Add New Item by right-clicking the website folder name in the Solution Explorer window Adding a New Item (Page 2) In the Add New Item dialog window: 1. Make sure to verify that Web is selected under Visual C# in the Installed pane 2. Select the document type an ASP.NET document page is a Web Form 3. Type filename (appropriate extension will be added) 4. Click <Add> button the new item is added to the Solution Explorer window Visual Studio Developer Interface (Page 1) Integrated Development Environment (IDE) the shared development environment Document windows (Edit and view documents) Resource Tools: Solution Explorer lists the project files and resources (images, databases, etc.) Server Explorer access server public components and manage connections to databases Visual Studio Developer Interface (Page 2) Resource Tools (con.): Properties window for setting properties for objects, controls, and classes Document Tabs allows switching easily between open documents Toolbox contains commonly used controls Error List window contains a to do list, e.g. errors that must be corrected before the application runs successfully Document Views The tabs at the bottom left of the Document window lets the designer select among the following views: Source view the actual ASP.NET code Design view an approximation of the Web page that the code will render in a browser 3

4 CST272 Getting Started Page 4 Split view Source view in the upper window and Design view in the lower window Properties Window Sets the properties for objects, controls, classes and other project components Properties can be updated: At design time by changing their values in the Properties Window By writing Visual C# assignment statements in the program code behind the page, e.g. TextBoxAge.Text = "30"; The Toolbox Provides access to commonly used controls, e.g. the ASP.NET Server controls Can be hidden and made to slide out (true of several other windows as well) the Auto Hide feature Hover over the text Toolbox in the left side of the IDE window and it slides into view (the default mode for the Toolbox is hidden) Click the Auto Hide icon (push pin) to turn the feature on and off Run the Web Site Running an ASP.NET Web Site application means to view it in a Web browser An application may be executed by clicking the <Start debugging> button on the Standard toolbar If the Debugging Not Enabled dialog window appears, select the Modify the Web.config file to enable debugging. radio button and click <OK> Close the browser window to stop running Save the Web Site To save current document, click the <Save> button on the Standard toolbar It should not be necessary to name it in the Save As dialog window since it was given a name when it was created initially Open a Web Site (Page 1) To open an existing ASP.NET project: 1. Select the File command from the menu bar 2. Click Open from the File menu 3. Click Project from the Open submenu Open a Web Site (Page 2) In the Open Web Site dialog window: 1. Select the folder name that contains the Solution file 2. Select the filename with the.sln extension 3. Click the <Open> button If you do not see the document on which you want to work, double-click its name in Solution Explorer 4

5 CST272 Getting Started Page ASP.NET Server Controls Controls are similar to Windows Forms controls ASP.NET controls are identified with the prefix asp: followed by the name of the control, plus a runat="server" attribute and value, e.g. <asp:dropdownlist runat="server"> Some types of ASP.NET Server Controls ASP.NET Form Controls (Web controls) Data Validation Controls Data Controls Mobile Controls (run on mobile devices) Browser Source Code What does the Web server send to the browser? (Look at the browser s source code for an ASP.NET page): ASP.NET code is never sent to the browser Instead the ASP.NET code runs on the Web server and builds an HTML document Only HTML tags, along with client-side scripts (e.g. JavaScript statements) are sent to the browser Adding an Existing Item Existing items might include Web Forms, HTML Pages, Web User Controls, image files, etc. Before starting, be certain folder that the item(s) are to be inserted into is selected in Solution Explorer 1. Select Website from the menu bar 2. Select Add Existing Item from the Website menu 3. Browse to Look in: folder 4. Select Files of type: from drop-down list 5. Select files and click <Add> button; the item(s) is/are added to specified folder in Solution Explorer Dragging Image from Solution Explorer In either Source or Design view, drag an image from the Solution Explorer window into the document Creates an <img> tag in the document Setting HTML Attributes in the Properties Window In either Source or Design view, select the element to be updated Enter the new values in the Properties Window The values are assigned as attributes and values, or created as a style element Using the Style Attribute for Formatting In either Source or Design view, select the element to be formatted Click the Build [ ] button which opens the Modify Style dialog window 5

6 CST272 Getting Started Page 6 Select Category and set the attributes and values Creates a style attribute for the selected tag, e.g. <hr style="position: absolute; top: 89; left: 0" /> Creating a Table from the Menu Bar In Design view select Table from the menu bar and Insert Table from the Table menu In the Insert Table dialog window select number of Rows and Columns, and any other attributes Adds <table>, <tr> and <td> tags to the document Formatting with the Formatting Toolbar In Design view select the text to be formatted The Styles dropdown list can be use to insert heading styles (<h1> to <h6>) and a wide variety of other styles into the document The Font dropdown list can be used to implement any available typeface to the document (inserts style rule into the <head> section Dragging ASP.NET Web Controls from the ToolBox In Source or Design view, from the ToolBox drag an ASP.NET Web control into the document Places the tag into the document Dragging HTML Controls from the ToolBox In Source or Design view, open HTML group in the ToolBox and drag an HTML control into the document Places the tag into the document Creating Bulleted Lists from the Formatting Toolbar In Design view click the <Bullets> button on the Formatting Toolbar and begin typing the text for each bulleted item Press the <Enter> key after each line to create each subsequent bulleted item Creates the <ul> and <li> tags in the document Click the <Numbering> button on the Formatting Toolbar to create a numbered list Inserts <ol> and <li> tags into document Creating Hyperlinks from the Formatting Toolbar In Design view select text (or object, e.g. an image) to be formatted as a hyperlink Click the <Hyperlink> button on the Formatting Toolbar In the Hyperlink dialog window: Select the hyperlink Type:, e.g. mailto or http Type the Text: which is the rest of the URL Adds the <a> tag with href attribute to the document Creating Formatting Styles 6

7 CST272 Getting Started Page 7 In Design view, from the Format menu select the New Style command In the New Style dialog window either: Type a CssClass attribute value that matches one that has been assigned to an element in the document From the dropdown menu, select an HTML tag, e.g. a Selector Select Category and set the attributes and values Inserts a style rule into the <head> section for that CssClass or selector The asp:button Control The Button control is used to display a push button May be a submit button or a command button (by default it is a submit button) It posts the page back to the server when it is clicked It is possible to write an event handler (a code block that executes) to control the actions performed when the submit button is clicked <asp:button id="buttonid" runat="server" Text="Button Text" /> The Code Behind the Page Code associated with the Form (and which gives it dynamic capability) is written in an ASP.NET-compatible language, e.g., Visual C# This code generally is stored in a separate file from the Form with the same name as the Web Form but with the extension.aspx.cs Compiled code behind the page is the class definition for the page When the application is built, the code is compiled into an executable file stored in the bin directory The asp:textbox Control (Page 1) The asp:textbox control displays a box into which the user may type input which effectively modifies the control s Text property This Text property as well as other properties of the TextBox may be updated: By modifying them in the Properties window By assigning (keying) the properties and values in the Source code window Programmatically using an assignment statement in the Code Editor The asp:textbox Control (Page 2) <asp:textbox ID="TextBoxID" runat="server" Text="TextBox text" [formatting properties] ></asp:label> Example: <asp:textbox ID="TextBoxAge" runat="server" Text=""></asp:TextBox> In the HTML source code, the Label is rendered as a <span> tag by the ASP.NET server and its properties are converted to CSS style elements The asp:label Control (Page 1) 7

8 CST272 Getting Started Page 8 The asp:label control displays stand-alone text that may not be manually updated by the user It has a series of properties used for formatting the contents of its Text property These properties all may be updated: By modifying them in the Properties window By assigning (keying) the properties and values in the Source code window Programmatically using an assignment statement in the Code Editor The asp:label Control (Page 2) <asp:label ID="LabelID" runat="server" Text="Label text" [formatting properties] ></asp:label> Example: <asp:label ID="LabelTHR" runat="server" Text=""></asp:Label> The Text Property The Text property means different things for different Web controls: Button the text that appears on the Button TextBox a String that represents the current value of the TextBox which is the value that is displayed inside the box Label the value that is displayed for the Label, often the result processing Events and Event Handlers (Page 1) For almost every object on the Form, the browser can respond to many mouse and keyboard actions Some examples: Click, MouseDown, MouseMove, KeyPress, Validating, Validated Events and Event Handlers (Page 2) To create event handlers for any control (including the Form itself) double-click on the object Default event for an asp:button is Click Default event for the Web Form is Load For each event handler method, registers a property within the control that links it to the method, e.g.: <asp:button runat="server" Text="Submit" OnClick="ButtonTHR_Click"> Syntax of an Event Handler Header (Page 1) protected type MethodName(object sender, EventClassType e) methodname by default consists of the concatenation of the object name and event type Event handler methods have two parameters: sender: a reference which identifies the object (control) which initiated the call to 8

9 CST272 Getting Started Page 9 the method e: a reference that stores property values and methods related to the event, e.g. the Click event Syntax of an Event Handler Header (Page 2) protected type MethodName(object sender, EventClassType e) Example: protected void ButtonTHR_Click(object sender, EventArgs e) The Convert Class The C# Convert class contains a rich set of static methods for converting from one type to another Convert.ToType(expression) Examples: int age = Convert.ToInt32(TextBoxAge.Text); Converts a String from a TextBox to a 32-bit integer LabelAge.Text = Convert.ToString(ageInteger); Converts an integer to a String 9

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 5 6 8 10 Introduction to ASP.NET and C# CST272 ASP.NET ASP.NET Server Controls (Page 1) Server controls can be Buttons, TextBoxes, etc. In the source code, ASP.NET controls

More information

CST141 ASP.NET Database Page 1

CST141 ASP.NET Database Page 1 CST141 ASP.NET Database Page 1 1 2 3 4 5 8 ASP.NET Database CST242 Database A database (the data) A computer filing system I.e. Payroll, personnel, order entry, billing, accounts receivable and payable,

More information

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 9. Web Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 9 Web Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter Objectives - 1 Explain the functions of the server and the client in Web programming Create a Web

More information

CST242 Windows Forms with C# Page 1

CST242 Windows Forms with C# Page 1 CST242 Windows Forms with C# Page 1 1 2 4 5 6 7 9 10 Windows Forms with C# CST242 Visual C# Windows Forms Applications A user interface that is designed for running Windows-based Desktop applications A

More information

Information Systems Engineering. Presenting data in web pages Using ASP.NET

Information Systems Engineering. Presenting data in web pages Using ASP.NET Information Systems Engineering Presenting data in web pages Using ASP.NET 1 HTML and web pages URL Request HTTP GET Response Rendering.html files Browser ..

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

Chapter 3 How to use HTML5 and CSS3 with ASP.NET applications

Chapter 3 How to use HTML5 and CSS3 with ASP.NET applications Chapter 3 How to use HTML5 and CSS3 with ASP.NET applications Murach's ASP.NET 4.5/C#, C3 2013, Mike Murach & Associates, Inc. Slide 1 IntelliSense as an HTML element is entered in Source view IntelliSense

More information

Creating Web Applications Using ASP.NET 2.0

Creating Web Applications Using ASP.NET 2.0 12 Creating Web Applications Using ASP.NET 2.0 12 Chapter CXXXX 39147 Page 1 07/14/06--JHR After studying Chapter 12, you should be able to: Define the terms used when talking about the Web Create a Web

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

More information

ASP.NET Pearson Education, Inc. All rights reserved.

ASP.NET Pearson Education, Inc. All rights reserved. 1 ASP.NET 2 Rule One: Our client is always right. Rule Two: If you think our client is wrong, see Rule One. Anonymous 3 25.1 Introduction ASP.NET 2.0 and Web Forms and Controls Web application development

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365... 3 LICENSE ACTIVATION...

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Overview of the Adobe Dreamweaver CS5 workspace

Overview of the Adobe Dreamweaver CS5 workspace Adobe Dreamweaver CS5 Activity 2.1 guide Overview of the Adobe Dreamweaver CS5 workspace You can access Adobe Dreamweaver CS5 tools, commands, and features by using menus or by selecting options from one

More information

Web Forms ASP.NET. 2/12/2018 EC512 - Prof. Skinner 1

Web Forms ASP.NET. 2/12/2018 EC512 - Prof. Skinner 1 Web Forms ASP.NET 2/12/2018 EC512 - Prof. Skinner 1 Active Server Pages (.asp) Used before ASP.NET and may still be in use. Merges the HTML with scripting on the server. Easier than CGI. Performance is

More information

Arena Development 101 / 102 Courses # A280, A281 IMPORTANT: You must have your development environment set up for this class

Arena Development 101 / 102 Courses # A280, A281 IMPORTANT: You must have your development environment set up for this class Arena Development 101 / 102 Courses # A280, A281 IMPORTANT: You must have your development environment set up for this class Presented by: Jeff Maddox Director of Platform Integrations, Ministry Brands

More information

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

CST272 ASP.NET Style Sheets Page 1

CST272 ASP.NET Style Sheets Page 1 CST272 ASP.NET Style Sheets Page 1 1 2 3 4 5 6 Style Sheets in ASP.NET CST272 ASP.NET Creating Cascading Style Sheets (CSS) Stores information on how to present the site Cascading style sheets allow content

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT AGENDA 3. Advanced C# Programming 3.1 Events in ASP.NET 3.2 Programming C# Methods 4. ASP.NET Web Forms 4.1 Page Processing

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

C H A P T E R T W E N T Y E I G H T. Create, close, and open a Web application. Add an image, text box, label, and button to a Web page

C H A P T E R T W E N T Y E I G H T. Create, close, and open a Web application. Add an image, text box, label, and button to a Web page 28 GETTING WEB-IFIED After studying Chapter 28, you should be able to: Create, close, and open a Web application View a Web page in a browser window and full screen view Add static text to a Web page Add

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

University of Bahrain College of Applied Studies

University of Bahrain College of Applied Studies University of Bahrain College of Applied Studies CSA 212: Human Interface and Design Activity 5: Front page 2003 Name : Student ID No : Section Instructor : : Demonstrator : Date : Total Marks : 10 Marks

More information

8 Library loan system

8 Library loan system Chapter 8: Library loan system 153 8 Library loan system In previous programs in this book, we have taken a traditional procedural approach in transferring data directly between web pages and the ASP database.

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

COPYRIGHTED MATERIAL. 1Getting Started with ASP.NET 4.5

COPYRIGHTED MATERIAL. 1Getting Started with ASP.NET 4.5 1Getting Started with ASP.NET 4.5 WHAT YOU WILL LEARN IN THIS CHAPTER: How to acquire and install Visual Studio Express 2012 for Web and Visual Studio 2012 How to create your first website with Visual

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format our web site. Just

More information

Client Configuration Cookbook

Client Configuration Cookbook Sitecore CMS 6.2 Client Configuration Cookbook Rev: 2009-10-20 Sitecore CMS 6.2 Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of Contents Chapter 1

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

Figure 1 Properties panel, HTML mode

Figure 1 Properties panel, HTML mode How to add text Adding text to a document To add text to a Dreamweaver document, you can type text directly in the Document window, or you can cut and paste text. You modify text by using the Properties

More information

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE

Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE 1 Tutorial 2 - Welcome Application Introducing, the Visual Studio.NET IDE Outline 2.1 Test-Driving the Welcome Application 2.2 Overview of the Visual Studio.NET 2003 IDE 2.3 Creating a Project for the

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

Table of contents. Ajax AutoComplete Manual DMXzone.com

Table of contents. Ajax AutoComplete Manual DMXzone.com Table of contents Table of contents... 1 About Ajax AutoComplete... 2 Features in Detail... 3 The Basics: Creating a Basic AJAX AutoComplete Field... 12 Advanced: Generating an AutoComplete Field using

More information

Insert/Edit Image. Overview

Insert/Edit Image. Overview Overview The tool is available on the default toolbar for the WYSIWYG Editor. The Images Gadget may also be used to drop an image on a page and will automatically spawn the Insert/Edit Image modal. Classic

More information

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline

Welcome Application. Introducing the Visual Studio.NET IDE. Objectives. Outline 2 T U T O R I A L Objectives In this tutorial, you will learn to: Navigate Visual Studio.NET s Start Page. Create a Visual Basic.NET solution. Use the IDE s menus and toolbars. Manipulate windows in the

More information

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles Using Dreamweaver CC 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format

More information

Adobe Dreamweaver CS4

Adobe Dreamweaver CS4 Adobe Dreamweaver CS4 About Dreamweaver Whether creating simple blog pages complex web sites, Dreamweaver provides users with a powerful set of web-design tools necessary f the task. Its userfriendly interface

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Project #3 Review Forms (con t) CGI Validation Design Preview Project #3 report Who is your client? What is the project? Project Three action= http://...cgi method=

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.1 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

The Dreamweaver Interface

The Dreamweaver Interface The Dreamweaver Interface Let s take a moment to discuss the different areas of the Dreamweaver screen. The Document Window The Document Window shows you the current document. This is where you are going

More information

AN INTRODUCTION TO ASP.NET 4.5

AN INTRODUCTION TO ASP.NET 4.5 10 x CHAPTER 1 GETTING STARTED WITH ASP.NET 4.5 In the following section, you see how ASP.NET works in much more detail. AN INTRODUCTION TO ASP.NET 4.5 When you type a URL like www.wrox.com in your web

More information

COPYRIGHTED MATERIAL WHAT YOU WILL LEARN IN THIS CHAPTER:

COPYRIGHTED MATERIAL WHAT YOU WILL LEARN IN THIS CHAPTER: 1 WHAT YOU WILL LEARN IN THIS CHAPTER: How to acquire and install Visual Web Developer 2010 Express and Visual Studio 2010 How to create your first web site with Visual Web Developer How an ASP.NET page

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.2 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

Web Site Development with HTML/JavaScrip

Web Site Development with HTML/JavaScrip Hands-On Web Site Development with HTML/JavaScrip Course Description This Hands-On Web programming course provides a thorough introduction to implementing a full-featured Web site on the Internet or corporate

More information

Website Creating Content

Website Creating Content CREATING WEBSITE CONTENT As an administrator, you will need to know how to create content pages within your website. This document will help you learn how to: Create Custom Pages Edit Content Areas Creating

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

Structure Bars. Tag Bar

Structure Bars. Tag Bar C H E A T S H E E T / / F L A R E 2 0 1 8 Structure Bars The XML Editor provides structure bars above and to the left of the content area in order to provide a visual display of the topic tags and structure.

More information

Client Configuration Cookbook

Client Configuration Cookbook Sitecore CMS 6.4 or later Client Configuration Cookbook Rev: 2013-10-01 Sitecore CMS 6.4 or later Client Configuration Cookbook Features, Tips and Techniques for CMS Architects and Developers Table of

More information

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide TRAINING GUIDE FOR OPC SYSTEMS.NET Simple steps to successful development and deployment. Step by Step Guide SOFTWARE DEVELOPMENT TRAINING OPC Systems.NET Training Guide Open Automation Software Evergreen,

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.1 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

IT153 Midterm Study Guide

IT153 Midterm Study Guide IT153 Midterm Study Guide These are facts about the Adobe Dreamweaver CS4 Application. If you know these facts, you should be able to do well on your midterm. Dreamweaver users work in the Document window

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

More information

This document contains information that will help you to create and send graphically-rich and compelling HTML s through the Create Wizard.

This document contains information that will help you to create and send graphically-rich and compelling HTML  s through the Create  Wizard. This document contains information that will help you to create and send graphically-rich and compelling HTML emails through the Create Email Wizard. or warranty by AT&T and is subject to change. 1 Contents

More information

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views!

Dreamweaver CS6. Table of Contents. Setting up a site in Dreamweaver! 2. Templates! 3. Using a Template! 3. Save the template! 4. Views! Dreamweaver CS6 Table of Contents Setting up a site in Dreamweaver! 2 Templates! 3 Using a Template! 3 Save the template! 4 Views! 5 Properties! 5 Editable Regions! 6 Creating an Editable Region! 6 Modifying

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

With Dreamweaver CS4, Adobe has radically

With Dreamweaver CS4, Adobe has radically Introduction to the Dreamweaver Interface With Dreamweaver CS4, Adobe has radically reengineered the Dreamweaver interface to provide a more unified experience across all of the Creative Suite applications.

More information

Getting Started with ASP.NET 3.5

Getting Started with ASP.NET 3.5 87593c01.qxd:WroxPro 1/25/08 9:05 AM Page 1 1 Getting Started with ASP.NET 3.5 Ever since the first release of the.net Framework 1.0 in early 2002, Microsoft has put a lot of effort and development time

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 9A0-046 Title : Adobe GoLive CS2 ACE Exam Vendors : Adobe Version : DEMO

More information

Getting Started with Mail Advanced Web Client. Mail is a full-featured messaging and collaboration application that offers reliable highperformance

Getting Started with Mail Advanced Web Client. Mail is a full-featured messaging and collaboration application that offers reliable highperformance Welcome Getting Started with Mail Advanced Web Client Mail is a full-featured messaging and collaboration application that offers reliable highperformance email with address books. 17_12_Mail_FAQs_2017.12.08_Amended

More information

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT

UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT UNIVERSITY OF CALGARY Information Technologies WEBFORMS DRUPAL 7 WEB CONTENT MANAGEMENT Table of Contents Creating a Webform First Steps... 1 Form Components... 2 Component Types.....4 Conditionals...

More information

A Brief Introduction to HTML

A Brief Introduction to HTML A P P E N D I X HTML SuMMAry J A Brief Introduction to HTML A web page is written in a language called HTML (Hypertext Markup Language). Like Java code, HTML code is made up of text that follows certain

More information

3 Customer records. Chapter 3: Customer records 57

3 Customer records. Chapter 3: Customer records 57 Chapter 3: Customer records 57 3 Customer records In this program we will investigate how records in a database can be displayed on a web page, and how new records can be entered on a web page and uploaded

More information

Getting Started with Access

Getting Started with Access MS Access Chapter 2 Getting Started with Access Course Guide 2 Getting Started with Access The Ribbon The strip across the top of the program window that contains groups of commands is a component of the

More information

How to use the Assets panel

How to use the Assets panel Adobe Dreamweaver Guide How to use the Assets panel You can use the Assets panel in Dreamweaver to manage assets in the current site (Figure 1). The Assets panel displays assets for the site associated

More information

Microsoft ASP.NET Using Visual Basic 2008: Volume 1 Table of Contents

Microsoft ASP.NET Using Visual Basic 2008: Volume 1 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Installation...INTRO-3 The Chapter Files...INTRO-3 Sample Database...INTRO-3

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Using WebFOCUS Designer Release 8.2 Version 03

Using WebFOCUS Designer Release 8.2 Version 03 Using WebFOCUS Designer Release 8.2 Version 03 April 19, 2018 Active Technologies, EDA, EDA/SQL, FIDEL, FOCUS, Information Builders, the Information Builders logo, iway, iway Software, Parlay, PC/FOCUS,

More information

Exam : 9A Title : Adobe GoLive CS2 ACE Exam. Version : DEMO

Exam : 9A Title : Adobe GoLive CS2 ACE Exam. Version : DEMO Exam : 9A0-046 Title : Adobe GoLive CS2 ACE Exam Version : DEMO 1. Which scripting language is the default for use with ASP, and does NOT require a language specification at the beginning of a Web page's

More information

Copyright 2018 MakeUseOf. All Rights Reserved.

Copyright 2018 MakeUseOf. All Rights Reserved. 15 Power User Tips for Tabs in Firefox 57 Quantum Written by Lori Kaufman Published March 2018. Read the original article here: https://www.makeuseof.com/tag/firefox-tabs-tips/ This ebook is the intellectual

More information

Getting Started (New Accounts)

Getting Started (New Accounts) Getting Started (New Accounts) 1. On any page with the menu, go to the faculty section and choose Faculty Website Access. 2. On the login page, make sure you are on Windows Login. Login with the username

More information

Forerunner Mobilizer Dashboards

Forerunner Mobilizer Dashboards Forerunner Mobilizer Dashboards Introduction With Forerunner Mobilizer Dashboard end users can now create dashboard style layouts by combining multiple different reports on a single page that will scroll

More information

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

Caja File Manager. Desktop User Guide

Caja File Manager. Desktop User Guide Caja File Manager Desktop User Guide Desktop User Guide» Working with Files This chapter describes how to use the Caja file manager. Introduction Spatial Mode Browser Mode Opening Files Searching For Files

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

INDEX. Drop-down List object, 60, 99, 211 dynamic forms, definition of, 4 dynamic XML forms (.pdf), 80, 89

INDEX. Drop-down List object, 60, 99, 211 dynamic forms, definition of, 4 dynamic XML forms (.pdf), 80, 89 A absolute binding expressions, definition of, 185 absolute URL, 243 accessibility definition of, 47 guidelines for designing accessible forms, 47 Accessibility palette definition of, 16 specifying options

More information

Roxen Content Provider

Roxen Content Provider Roxen Content Provider Generation 3 Templates Purpose This workbook is designed to provide a training and reference tool for placing University of Alaska information on the World Wide Web (WWW) using the

More information

File: SiteExecutive 2013 Core Modules User Guide.docx Printed September 30, 2013

File: SiteExecutive 2013 Core Modules User Guide.docx Printed September 30, 2013 File: SiteExecutive 2013 Core Modules User Guide.docx Printed September 30, 2013 Page i Contact: Systems Alliance, Inc. Executive Plaza III 11350 McCormick Road, Suite 1203 Hunt Valley, Maryland 21031

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 7 More on Links, Layout, and Mobile Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

RoboHelp HTML Training

RoboHelp HTML Training RoboHelp HTML Training Developed by Diamondhead Documentation, Inc. 2011 Nationwide Advantage Mortgage Company Page 1 of 11 Table of Contents Directory Structure... 3 HTML Files (Topics) Folder... 3 URLs

More information

Layout Manager - Toolbar Reference Guide

Layout Manager - Toolbar Reference Guide Layout Manager - Toolbar Reference Guide Working with a Document Toolbar Button Description View or edit the source code of the document (for advanced users). Save the contents and submit its data to the

More information

Developing Intelligent Apps

Developing Intelligent Apps Developing Intelligent Apps Lab 1 Creating a Simple Client Application By Gerry O'Brien Overview In this lab you will construct a simple client application that will call an Azure ML web service that you

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.2 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema 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

More information

TreeView for ASP.NET Wijmo

TreeView for ASP.NET Wijmo ComponentOne TreeView for ASP.NET Wijmo By GrapeCity, Inc. Copyright 1987-2012 GrapeCity, Inc. All rights reserved. Corporate Headquarters ComponentOne, a division of GrapeCity 201 South Highland Avenue

More information

Office 365: . Accessing and Logging In. Mail

Office 365:  . Accessing and Logging In. Mail Office 365: Email This class will introduce you to Office 365 and cover the email components found in Outlook on the Web. For more information about the Microsoft Outlook desktop client, register for a

More information