Microsoft ASP.NET Using Visual Basic 2010 Table of Contents

Size: px
Start display at page:

Download "Microsoft ASP.NET Using Visual Basic 2010 Table of Contents"

Transcription

1 Table of Contents INTRODUCTION... I-1 Prerequisites... I-2 Installing the Practice Files... I-3 Software Requirements... I-3 Installation... I-3 The Chapter Files... I-3 Sample Database... I-4 Security... I-5 About the Authors... I-6 INTRODUCTION TO ASP.NET A Review of Classic ASP Dynamically Creating Web Pages An ASP Example ASP Shortcomings ASP.NET to the Rescue ASP.NET Web Applications Creating a New Web Application Rendering HTML with Server Controls Types of Server Controls Using HTML Controls Using ASP.NET Web Server Controls Data Binding in ASP.NET Web Development in Visual Studio Code Behind vs. Inline Code Web Sites and Applications ASP.NET Development Server Multi-Targeting Support LAB 1: INTRODUCTION TO ASP.NET Lab 1 Overview Work with Web Controls Display Data in Web Controls TOC-1

2 WORKING WITH CONTROLS Introduction to Web Controls The WebControl Class The Label Control Simple Input Controls TextBox Controls CheckBox Controls RadioButton Controls HyperLink and Button Controls Postback Behavior HyperLink Controls Button Controls Displaying Images Using the ImageMap Control Image Alternate Text List Controls The Sample Page Adding Items to Lists Adding Items Programmatically Handling Selections and Postbacks Clearing Selected Items Removing Items Controlling Focus Setting Form Defaults Calling the Focus() Method Using TabIndex and AccessKey Overriding Default Button Settings with Panel Controls LAB 2: WORKING WITH CONTROLS Lab 2 Overview Create Web Forms Controls Make the Web Forms Controls Work USING RICH SERVER CONTROLS Introduction to Rich Controls The Calendar Control Working with the Calendar Control Handling Calendar Events Adding Custom Content with DayRender Investigating the Client-Side Code TOC-2

3 The AdRotator Control How the AdRotator Works Setting Up the Advertisement File Advertisement File Contents Adding User-Defined Elements Setting the Target Frame Filtering Images with the KeywordFilter Property Using the AdCreated Event The XML Control Setting the XML Control Properties Providing the Style Sheet LAB 3: USING RICH SERVER CONTROLS Lab 3 Overview Work with the Calendar Control Work with the AdRotator Control ACCESSING DATA Overview of ADO.NET ADO.NET Classes The ADO.NET Architecture Creating ADO.NET Data Objects The DataTable Object Connecting to Data Setting Up Connection Information Using the Connection Object Executing Commands Using a SqlDataReader Working with Data Working with Data Using a Data Adapter Managing Data with the DataSet Object Filling a DataTable within a DataSet Filling DataSets from SQL Server Choosing an ADO.NET Provider The SQL Server.NET Data Provider The OLE DB.NET Data Provider The ODBC Data Provider Writing Code for Multiple Providers TOC-3

4 LAB 4: ACCESSING DATA Lab 4 Overview Use a Data Reader to Fill a ListBox with Categories Use a DataSet to Fill a GridView with Products INTRODUCTION TO LINQ Language Integrated Query LINQ Using Visual Basic and C# LINQ Syntax Basic LINQ Syntax Extension Methods LINQ and More Complex Objects Anonymous Types Some Interesting Examples LINQ to SQL Creating a Data Model Calling Stored Procedures Using Anonymous Types with SQL Modifying SQL Data LINQ to DataSets LINQ to Typed DataSets LINQ to Untyped DataSets LINQ to XML Generating XML Querying XML Transforming XML Are You Done? Is there More? LAB 5: INTRODUCTION TO LINQ Lab 5 Overview Use LINQ to Objects Use LINQ to SQL Use LINQ to XML CONFIGURATION Configuration Overview Navigating the Configuration File Hierarchy Configuration File Elements Sample web.config TOC-4

5 ASP.NET Configuration Tools Configuration Security Features Using the Web Site Administration Tool The Web Site Administration Tool Graphical User Interface Using the Web Site Administration Tool to Create a Custom Error Page Programming Configuration Files The Configuration APIs Storing and Retrieving Connection Strings Writing to Configuration Files Using External Configuration Files Standard Configuration Sections Is That All There Is? Encrypting Configuration Sections Protected Configuration Providers Encrypting the connectionstrings Section in web.config Encrypting External Configuration Files Moving Encrypted Configuration Files LAB 6: CONFIGURATION Lab 6 Overview Use the Web Site Administration Tool Read Application Settings from web.config DATA BINDING Introducing Data Source Controls Introducing Data-Bound Controls Reading and Writing Data Using the SqlDataSource Control Bind a DropDownList Control Display Product Information in a DetailsView Control Filter Data Based on the DropDownList Value Data Source Control Events Should You Use the SqlDataSource Control? Displaying and Editing Middle-Tier Data Using the ObjectDataSource Control Binding Using the LinqDataSource Control Demonstrating the LinqDataSource Control Displaying XML Data Using the XmlDataSource Control Configuring the XmlDataSource Control Add the FormView Control TOC-5

6 LAB 7: DATA BINDING Lab 7 Overview Display a DropDownList of Categories Display a GridView Control with the Selected Category Information Display and Edit the Selected Product VALIDATING USER INPUT Overview of ASP.NET Validation Controls The Validation Controls Using the Simple Validators Using the RequiredFieldValidator Using a RangeValidator to Ensure that Data Falls within a Specified Range Using a CompareValidator to Compare Values Using the Complex Validators Validate General Text with the RegularExpressionValidator Create Your Own Validation Using the CustomValidator Control Summarizing Results with the ValidationSummary Control Display Modes for the ValidationSummary Control Separating Validation into Validation Groups LAB 8: VALIDATING USER INPUT Lab 8 Overview Add Required Field and Range Validators Add a Compare Validator and Validation Summary Add a Regular Expression Validator Add a Custom Validator CASCADING STYLE SHEETS Introducing Cascading Style Sheets Advantages of Using Styles Converting from Embedded to Linked Style Sheets What Is CSS, Really? Investigating Styles Font Attributes Color Attributes Margins and Alignment Positioning TOC-6

7 <DIV> and <SPAN> Classes and IDs Grouping Is That All? Using Visual Studio s Tools for Working with Styles Split View Editing Manage Styles Window Using the Direct Style Application Toolbar Creating New Styles in the Stylesheet Editor Creating New Styles from the Manage Styles Window Using the CSS Properties Window LAB 9: CASCADING STYLE SHEETS Lab 9 Overview Use CSS for Text Formatting Use CSS Styles for Text Positioning THEMES AND MASTER PAGES Creating a Consistent Web Site ASP.NET Themes Working with Themes, Folders, and Skins Applying a Theme Creating a Theme Working with Themes Creating Named Skins More Issues with Themes Master Pages Creating a Master Page Creating a Content Page Converting a Standard Page to a Content Page Adding Default Content Practical Master Pages Creating Nested Master Pages LAB 10: THEMES AND MASTER PAGES Lab 10 Overview Create a Theme Set Up a Master Page and Content Pages Create Named Skins TOC-7

8 SITE NAVIGATION ASP.NET Web Site Navigation Providers and Data Sources Absolute and Relative URLs Creating an XML Site Map File A Hierarchy of Nested sitemapnode Elements Built-In and Custom Attributes Site Navigation Controls Breadcrumb Controls and Hierarchical Navigation Using the Site Navigation API Accessing Current and Sibling Nodes Exploring the SiteMap Class URL Mapping Mapping URLs in Web.config Adjusting the Site Map Using Multiple Site Map Providers Security Trimming Authentication and Authorization The Web Site Administration Tool Enabling Security Trimming Automatic Role-Based Trimming LAB 11: SITE NAVIGATION Lab 11 Overview Add a SiteMap and Menu Add a Category Node and SiteMapPath DISPLAYING DATA WITH THE GRIDVIEW CONTROL Introducing the GridView Control Displaying Data with the GridView Control Filter Data in the GridView Control Create the DropDownList of Countries Filter the Data Based on the Selected Country Allow Users to Select from a DropDownList in the Grid Introducing Templates Convert the Country Field into a Template Add a Hyperlink to the Grid Create the CustomerOrders Page Create the Hyperlink TOC-8

9 Deleting a Row and Handling Errors Add the Delete Link Add the Client-Side Alert Add Event-Handling Code What s Left? LAB 12: DISPLAYING DATA WITH THE GRIDVIEW CONTROL Lab 12 Overview Format the Orders Grid and Add Functionality Add a Related GridView Control Showing Order Details Modify the HyperLink Column so that it s Editable MANAGING STATE Preserving State in Web Applications Methods of Preserving State Page-Level State Enabling Dynamic Page Modifications ViewState and the Page Lifecycle Enabling Change Events Understanding ViewState When to Disable ViewState Limitations of Page-Level State Using Cookies to Preserve State Working with Cookies in ASP.NET Code Limitations of Using Cookies ASP.NET Session State Problems in Classic ASP The Session Object Storing Objects in Session State Storing ADO.NET Objects in Session Session State Object Storage Configuring Session State Editing Configuration Files Session State Options Setting Up an Out-of-Process State Server Ensuring that Your Data Is Serializable Testing StateServer Session State Storing Session State in SQL Server Configuring SQL Server Session State TOC-9

10 Testing SQL Server Session State Using Cookieless Session IDs Application State Limitations of Application State LAB 13: MANAGING STATE Lab 13 Overview Store Data in Session State Implement Out-of-Process Session State Using a State Server MANAGING USERS WITH ASP.NET'S MEMBERSHIP FEATURES Introduction to Membership and Roles Introducing Membership Management in ASP.NET Introducing Role Management The Security Services Stack Data Has to Go Somewhere Configuring Members and Roles Modifying Provider Behavior Working with Roles Authentication and Cookies Using Membership Controls LoginStatus Control Login Control LoginView Control LoginName Control ChangePassword Control PasswordRecovery Control CreateUserWizard Control Writing Code to Interact with Membership and Roles The Membership and MembershipUsers Classes The Roles Class Creating Custom Providers Setting Up the XML Provider LAB 14: MANAGING USERS WITH ASP.NET'S MEMBERSHIP FEATURES Lab 14 Overview Create Users and Add Authentication Add Support for Password Handling Add Access Rules TOC-10

11 SERVER-SIDE DEBUGGING Server-Side Code Debugging in ASP.NET Using the Visual Debugger Configuring Debugging Setting Breakpoints Stepping Through Code Debugging Exceptions and Handling Errors The Exception Assistant Redirecting Users Debugging Stored Procedures Creating a Database Project Working with Data Connections Debugging Stored Procedures LAB 15: SERVER-SIDE DEBUGGING Lab 15 Overview Debug Code Redirect Users CLIENT-SIDE AND ADVANCED DEBUGGING Client-Side Code Debugging in ASP.NET Debugging Client-Side JavaScript Configuring Script Debugging Script Debugging Debugging Script in Dynamic Resource Files Limitations of Breakpoint Mapping Custom Data Visualizers A Client Data Visualizer Building a Custom Visualizer The Visualizer Class Deploying a Custom Visualizer Debugging.NET Framework Source Code Configuring.NET Framework Source Code Access Exploring the Source Code LAB 16: CLIENT-SIDE AND ADVANCED DEBUGGING Lab 16 Overview Debug Client-Side JavaScript Build a String Data Visualizer TOC-11

12 TRACING ASP.NET Trace Page-Level Tracing Application-Level Tracing Instrumenting with Trace Listeners The WebPageTraceListener Health Monitoring with Web Events Working with the TraceFinished Event Sending Web Event Data to SQL Server Using the SqlWebEventProvider Providers, Rules, and Event Mappings Viewing Event Data LAB 17: TRACING Lab 17 Overview Implement Page-Level Tracing Work with Programmatic Tracing Configure Application-Level Tracing CREATING NEW CONTROLS Two Kinds of User-Defined Controls Creating a User Control A More Complex User Control Investigating the User Control Providing States Data User Control Properties User Control Events Testing the User Control Why Not Stop Here? Creating a Custom Control Investigating the StateDropDownList Control Rendering the Control Control Properties Managing Property Behavior Using Attributes Working with Postback Data Specifying a Toolbox Icon Finishing Touches What s Next? TOC-12

13 LAB 18: CREATING NEW CONTROLS Lab 18 Overview Render the Control s HTML Add Control Properties Add Postback and Event Support Add the Final Touches (Optional) IMPROVING PERFORMANCE WITH OUTPUT CACHING The Importance of Caching Improvements over Classic ASP Types of Caching in ASP.NET Declarative Page Output Caching Caching Static Pages Code Behind the Caching Example Pages Caching Multiple Versions of a Page Caching Page Fragments Using VaryByControl Caching Multiple Versions of a Control on a Page Post-Cache Substitution Calling a Method to Insert HTML Using a Substitution Control Caching Configuration Output Cache Profiles Global Configuration Settings LAB 19: IMPROVING PERFORMANCE WITH OUTPUT CACHING Lab 19 Overview Vary Caching by Form Parameters Use a Cache Profile ADVANCED CACHING TECHNIQUES ASP.NET Caching Review Declarative Output Caching Overview of Advanced Caching Features Testing Caching in Visual Studio Programmatic Page Caching The Caching Object Model Caching Static Pages Programmatically TOC-13

14 Caching Data Using Cache.Add and Cache.Insert Controlling Expiration Caching Data with Dependencies Expiring a Cached Item when Data Changes Polling for Changes to a Table Polling for Changes to Query Results Using SQL Server Query Notifications for Caching LAB 20: ADVANCED CACHING TECHNIQUES Lab 20 Overview Configure Output Caching with Code Configure Polling-Based Caching Configure a Data Source Control to Cache Data with Query Notifications USING THE DATALIST AND REPEATER CONTROLS Overview of List-Bound Controls Using the Repeater Control Binding the Repeater Control to Data A More Complex Example The CategoryDetail Page Creating a DataList Control Formatting the DataList Binding Data to the DataList Displaying Bound Data Selecting a Row Refreshing the Display Editing Data with the DataList LAB 21: USING THE DATALIST AND REPEATER CONTROLS Lab 21 Overview Using the Repeater Control Using the DataList Control Introduction to the ListView Control Exploring the ASP.NET ListView Create a ListView ListView Control Templates Handling the No Data Situation Grouping Items TOC-14

15 Modifying Data in the ListView Control Convert a Static Page to Use a ListView Static Version of the Page Add a ListView Control to Display Content Add a LINQ Data Source Enable Data Editing Sort Data in a ListView Adding Paging with the DataPager Control Exploring ListView Paging Implement More Flexible Paging LAB 22: USING THE LISTVIEW AND DATAPAGER CONTROLS Lab 22 Overview Create and Use a ListView Control Customize the ListView with Templates and a DataPager ASP.NET PROFILE FEATURES Introducing Profiles Profile s Strongly Typed Access Storing Profile Data Considering Profiles Configuring Profiles Setting Up Web.config Using Custom Types Using SQL Server for Profile Storage Modifying Provider Behavior Investigating the Sample Site Working with Anonymous Profiles Enabling Anonymous Profiles Identifying Anonymous Users Enabling Specific Properties for Anonymous Users Migrating Anonymous Users Creating a Custom Profile Provider Examining the Custom Profile Provider Comparing Profiles and Session State LAB 23: ASP.NET PROFILE FEATURES Lab 23 Overview Add Profile Properties TOC-15

16 Add Anonymous Profile Support Migrate Anonymous Profile Information ASP.NET EXTENSIONS ASP.NET Extensions Web Deployment Projects ASP.NET AJAX History Feature Use AJAX History ASP.NET Dynamic Data Create a Dynamic Data Web Site Explore the Structure of a Dynamic Data Web Site Routing Change Data Display Change Page Templates for Some Tables LAB 24: ASP.NET EXTENSIONS Lab 24 Overview Use AJAX History in a Web Page Create a Dynamic Data Web Site INDEX... INDEX-1 TOC-16

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB)

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Course Number: 70-567 UPGRADE Certification Exam 70-567 - UPGRADE: Transition your MCPD Web Developer Skills to MCPD ASP.NET

More information

Expanded contents. Section 1. Chapter 2. The essence off ASP.NET web programming. An introduction to ASP.NET web programming

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 murachbooks@murach.com www.murach.com

More information

ASP.NET Using C# (VS2012)

ASP.NET Using C# (VS2012) ASP.NET Using C# (VS2012) This five-day course provides a comprehensive and practical hands-on introduction to developing applications using ASP.NET 4.5 and C#. It includes an introduction to ASP.NET MVC,

More information

MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005

MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005 MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005 Thom Luce, Ohio University, luce@ohio.edu ABSTRACT Information Systems programs in Business

More information

This class is intended for experienced software developers who understand object-oriented programming (OOP) and C# or VB.NET.

This class is intended for experienced software developers who understand object-oriented programming (OOP) and C# or VB.NET. Objectif is a five-day instructor-led course which begins by introducing the different architectures of ASP.NET Web applications. It then covers the Page class, Web controls, master pages, CSS/Themes,

More information

DotNet Web Developer Training Program

DotNet Web Developer Training Program DotNet Web Developer Training Program Introduction/Summary: This 5-day course focuses on understanding and developing various skills required by Microsoft technologies based.net Web Developer. Theoretical

More information

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led

Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Developing ASP.NET MVC 4 Web Applications Course 20486A; 5 Days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

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

MCTS:.NET Framework 4, Web Applications

MCTS:.NET Framework 4, Web Applications MCTS:.NET Framework 4, Web Applications Course Description and Overview Overview SecureNinja s Web applications development with.net Framework 4 training and certification boot camp in Washington, DC will

More information

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet

More information

Visual COBOL ASP.NET Shopping Cart Demonstration

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

More information

Developing ASP.NET MVC 4 Web Applications MOC 20486

Developing ASP.NET MVC 4 Web Applications MOC 20486 Developing ASP.NET MVC 4 Web Applications MOC 20486 Course Outline Module 1: Exploring ASP.NET MVC 4 The goal of this module is to outline to the students the components of the Microsoft Web Technologies

More information

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications.

This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. 20486B: Developing ASP.NET MVC 4 Web Applications Course Overview This course provides students with the knowledge and skills to develop ASP.NET MVC 4 web applications. Course Introduction Course Introduction

More information

COURSE CURRICULUM COURSE TITLE: WEB PROGRAMMING USING ASP.NET (COURSE CODE: 3351603)

COURSE CURRICULUM COURSE TITLE: WEB PROGRAMMING USING ASP.NET (COURSE CODE: 3351603) Web Programming using Course code: 3351603 GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT 1. RATIONALE COURSE CURRICULUM COURSE TITLE: WEB PROGRAMMING USING (COURSE CODE: 3351603) Diploma Program

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Course M20486 5 Day(s) 30:00 Hours Developing ASP.NET MVC 4 Web Applications Introduction In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools

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 1. Introduction to Web Applications and ASP.net 1.1 History of Web Development 1.2 Basic ASP.net processing (ASP

More information

Web Application diploma using.net Technology

Web Application diploma using.net Technology Web Application diploma using.net Technology ISI ACADEMY Web Application diploma using.net Technology HTML - CSS - JavaScript - C#.Net - ASP.Net - ADO.Net using C# What You'll Learn understand all the

More information

ASP.NET Overview. Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland

ASP.NET Overview. Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland ASP.NET Overview Ken Casada Developer Evangelist Developer & Platform Evangelism Microsoft Switzerland Agenda Introduction Master Pages Data access Caching Site navigation Security: users and roles Themes/Skin

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

Nintex Forms 2013 Help

Nintex Forms 2013 Help Nintex Forms 2013 Help Last updated: Friday, April 17, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

SQL Server 2005 Reporting Services (SSRS)

SQL Server 2005 Reporting Services (SSRS) SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services

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

About the Authors About the Technical Reviewer

About the Authors About the Technical Reviewer About the Authors p. xiii About the Technical Reviewer p. xv Introduction p. xvii Starting an E-Commerce Site p. 1 Deciding Whether to Go Online p. 1 Getting More Customers p. 2 Making Customers Spend

More information

Developing and Implementing Web Applications with Microsoft Visual C#.NET and Microsoft Visual Studio.NET

Developing and Implementing Web Applications with Microsoft Visual C#.NET and Microsoft Visual Studio.NET Unit 39: Developing and Implementing Web Applications with Microsoft Visual C#.NET and Microsoft Visual Studio.NET Learning Outcomes A candidate following a programme of learning leading to this unit will

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

Programming Fundamentals of Web Applications Course 10958A; 5 Days

Programming Fundamentals of Web Applications Course 10958A; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Programming Fundamentals of Web Applications Course 10958A; 5 Days Course

More information

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT COURSE CURRICULUM COURSE TITLE: ADVANCE WEB TECHNOLOGY (COURSE CODE: 3360706)

GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT COURSE CURRICULUM COURSE TITLE: ADVANCE WEB TECHNOLOGY (COURSE CODE: 3360706) GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT COURSE CURRICULUM COURSE TITLE: ADVANCE WEB TECHNOLOGY (COURSE CODE: 3360706) Diploma Programme in which this course is offered Computer Engineering

More information

Terms and Definitions for CMS Administrators, Architects, and Developers

Terms and Definitions for CMS Administrators, Architects, and Developers Sitecore CMS 6 Glossary Rev. 081028 Sitecore CMS 6 Glossary Terms and Definitions for CMS Administrators, Architects, and Developers Table of Contents Chapter 1 Introduction... 3 1.1 Glossary... 4 Page

More information

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158

multiple placeholders bound to one definition, 158 page approval not match author/editor rights, 157 problems with, 156 troubleshooting, 156 158 Index A Active Directory Active Directory nested groups, 96 creating user accounts, 67 custom authentication, 66 group members cannot log on, 153 mapping certificates, 65 mapping user to Active Directory

More information

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL

ISI ACADEMY Web applications Programming Diploma using PHP& MySQL ISI ACADEMY for PHP& MySQL web applications Programming ISI ACADEMY Web applications Programming Diploma using PHP& MySQL HTML - CSS - JavaScript PHP - MYSQL What You'll Learn Be able to write, deploy,

More information

Application Development

Application Development Microsoft SQL Azure: Enterprise Application Development Build enterprise-ready applications and projects with SQL Azure Jayaram Krishnaswamy PUBLISHING BIRMINGHAM - MUMBAI Preface 1 Chapter 1: Cloud Computing

More information

Fast track to HTML & CSS 101 (Web Design)

Fast track to HTML & CSS 101 (Web Design) Fast track to HTML & CSS 101 (Web Design) Level: Introduction Duration: 5 Days Time: 9:30 AM - 4:30 PM Cost: 997.00 Overview Fast Track your HTML and CSS Skills HTML and CSS are the very fundamentals of

More information

Visual Basic. murach's TRAINING & REFERENCE

Visual Basic. murach's TRAINING & REFERENCE TRAINING & REFERENCE murach's Visual Basic 2008 Anne Boehm lbm Mike Murach & Associates, Inc. H 1-800-221-5528 (559) 440-9071 Fax: (559) 440-0963 murachbooks@murach.com www.murach.com Contents Introduction

More information

SAP BO 4.1 COURSE CONTENT

SAP BO 4.1 COURSE CONTENT Data warehousing/dimensional modeling/ SAP BW 7.0 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.0 4. SAP BW 7.0 Cubes, DSO s,multi Providers, Infosets 5. Business

More information

Intermediate ASP.NET Web Development with C# Instructor: Frank Stepanski. Data Sources on the Web

Intermediate ASP.NET Web Development with C# Instructor: Frank Stepanski. Data Sources on the Web Intermediate ASP.NET Web Development with C# Instructor: Frank Stepanski Data Sources on the Web Many websites on the web today are just a thin user interface shell on top of sophisticated data-driven

More information

DNNCentric Custom Form Creator. User Manual

DNNCentric Custom Form Creator. User Manual DNNCentric Custom Form Creator User Manual Table of contents Introduction of the module... 3 Prerequisites... 3 Configure SMTP Server... 3 Installation procedure... 3 Creating Your First form... 4 Adding

More information

http://msdn.microsoft.com/en-us/library/4w3ex9c2.aspx

http://msdn.microsoft.com/en-us/library/4w3ex9c2.aspx ASP.NET Overview.NET Framework 4 ASP.NET is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with a minimum of coding. ASP.NET is

More information

Designing and Developing Microsoft SharePoint Server 2010 Applications Course Outline

Designing and Developing Microsoft SharePoint Server 2010 Applications Course Outline Designing and Developing Microsoft SharePoint Server 2010 Applications Course Outline Course Overview: This five-day instructor-led course is intended for SharePoint Development professionals who are responsible

More information

Kentico CMS Web Parts

Kentico CMS Web Parts Kentico CMS Web Parts Abuse report Abuse report In-line abuse report Articles Article list Attachments Attachment image gallery Document attachments BizForms Blogs BizForm (on-line form) Comment view Recent

More information

MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions

MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions MOC 20488B: Developing Microsoft SharePoint Server 2013 Core Solutions Course Overview This course provides students with the knowledge and skills to work with the server-side and client-side object models,

More information

Kentico CMS 5 Developer Training Syllabus

Kentico CMS 5 Developer Training Syllabus Kentico CMS 5 Developer Training Syllabus June 2010 Page 2 Contents About this Course... 4 Overview... 4 Audience Profile... 4 At Course Completion... 4 Course Outline... 5 Module 1: Overview of Kentico

More information

Programming in C# with Microsoft Visual Studio 2010

Programming in C# with Microsoft Visual Studio 2010 Introducción a la Programación Web con C# en Visual Studio 2010 Curso: Introduction to Web development Programming in C# with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft

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

Designing and Developing Microsoft SharePoint Server 2010 Applications (MS10232)

Designing and Developing Microsoft SharePoint Server 2010 Applications (MS10232) Duration: 5 days Description This training is intended for SharePoint Development professionals who are responsible for leading projects, designing solutions, and identifying problems. Students learn the

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

Form Master 2008. User Manual

Form Master 2008. User Manual User Manual Created: Friday, September 04, 2009 Welcome Welcome to the User Guide. The guide presented here will help you the user, get up and running quickly with Form Master 2008 for DotNetNuke Table

More information

How to test and debug an ASP.NET application

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

More information

Microsoft.Realtests.98-363.v2014-08-23.by.ERICA.50q

Microsoft.Realtests.98-363.v2014-08-23.by.ERICA.50q Microsoft.Realtests.98-363.v2014-08-23.by.ERICA.50q Number: 98-363 Passing Score: 800 Time Limit: 120 min File Version: 26.5 MICROSOFT 98-363 EXAM QUESTIONS & ANSWERS Exam Name: Web Development Fundamentals

More information

Application Developer Guide

Application Developer Guide IBM Maximo Asset Management 7.1 IBM Tivoli Asset Management for IT 7.1 IBM Tivoli Change and Configuration Management Database 7.1.1 IBM Tivoli Service Request Manager 7.1 Application Developer Guide Note

More information

User s Guide. Version 2.1

User s Guide. Version 2.1 Content Management System User s Guide Version 2.1 Page 1 of 51 OVERVIEW CMS organizes all content in a tree hierarchy similar to folder structure in your computer. The structure is typically predefined

More information

Dreamweaver CS3 THE MISSING MANUAL. David Sawyer McFarland. POGUE PRESS" O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo

Dreamweaver CS3 THE MISSING MANUAL. David Sawyer McFarland. POGUE PRESS O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Dreamweaver CS3 THE MISSING MANUAL David Sawyer McFarland POGUE PRESS" O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents The Missing Credits Introduction 1 Part

More information

How To Train Aspnet

How To Train Aspnet Technology Services...Ahead of Times.net Training Plan Level 3 Company Class Pre-requisites Attendees should have basic knowledge of: HTML/ JavaScript Object Oriented Programming Relational DBMS / SQL

More information

This three-day instructor-led course provides students with the tools to extend Microsoft Dynamics CRM 4.0.

This three-day instructor-led course provides students with the tools to extend Microsoft Dynamics CRM 4.0. Table of Contents Introduction Audience Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction This three-day instructor-led course provides students with the

More information

Beginning C# 5.0. Databases. Vidya Vrat Agarwal. Second Edition

Beginning C# 5.0. Databases. Vidya Vrat Agarwal. Second Edition Beginning C# 5.0 Databases Second Edition Vidya Vrat Agarwal Contents J About the Author About the Technical Reviewer Acknowledgments Introduction xviii xix xx xxi Part I: Understanding Tools and Fundamentals

More information

Creating a Public Knowledge Base with Salesforce Knowledge

Creating a Public Knowledge Base with Salesforce Knowledge Salesforce.com: Spring 13 Creating a Public Knowledge Base with Salesforce Knowledge Last updated: February 1, 2013 Copyright 2000 2013 salesforce.com, inc. All rights reserved. Salesforce.com is a registered

More information

Developer Tutorial Version 1. 0 February 2015

Developer Tutorial Version 1. 0 February 2015 Developer Tutorial Version 1. 0 Contents Introduction... 3 What is the Mapzania SDK?... 3 Features of Mapzania SDK... 4 Mapzania Applications... 5 Architecture... 6 Front-end application components...

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

ResPAK Internet Module

ResPAK Internet Module ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application

More information

Using the Query Analyzer

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

More information

Extending Microsoft Dynamics CRM 4.0

Extending Microsoft Dynamics CRM 4.0 Extending Microsoft Dynamics CRM 4.0 8969: Extending Microsoft Dynamics CRM 4.0 (3 Days) About this Course This three-day instructor-led course provides students with the knowledge and skills to develop

More information

Migrating helpdesk to a new server

Migrating helpdesk to a new server Migrating helpdesk to a new server Table of Contents 1. Helpdesk Migration... 2 Configure Virtual Web on IIS 6 Windows 2003 Server:... 2 Role Services required on IIS 7 Windows 2008 / 2012 Server:... 2

More information

Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET

Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET Unit 40: Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET Learning Outcomes A candidate following a programme of learning leading to this

More information

Analytics Configuration Reference

Analytics Configuration Reference Sitecore Online Marketing Suite 1 Analytics Configuration Reference Rev: 2009-10-26 Sitecore Online Marketing Suite 1 Analytics Configuration Reference A Conceptual Overview for Developers and Administrators

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

Elgg 1.8 Social Networking

Elgg 1.8 Social Networking Elgg 1.8 Social Networking Create, customize, and deploy your very networking site with Elgg own social Cash Costello PACKT PUBLISHING open source* community experience distilled - BIRMINGHAM MUMBAI Preface

More information

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of

More information

2. Modify default.aspx and about.aspx. Add some information about the web site.

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

More information

Working With Templates in Web Publisher. Contributed by Paul O Mahony Developer Program

Working With Templates in Web Publisher. Contributed by Paul O Mahony Developer Program Working With Templates in Web Publisher Contributed by Paul O Mahony Developer Program Overview... 3 Template Options... 3 Web Publisher Editor Templates... 3 Advanced Content Editor... 3 ewebeditpro +

More information

Engagement Analytics Configuration Reference Guide

Engagement Analytics Configuration Reference Guide Engagement Analytics Configuration Reference Guide Rev: 17 June 2013 Sitecore CMS & DMS 6.6 or later Engagement Analytics Configuration Reference Guide A conceptual overview for developers and administrators

More information

TSM Studio Server User Guide 2.9.0.0

TSM Studio Server User Guide 2.9.0.0 TSM Studio Server User Guide 2.9.0.0 1 Table of Contents Disclaimer... 4 What is TSM Studio Server?... 5 System Requirements... 6 Database Requirements... 6 Installing TSM Studio Server... 7 TSM Studio

More information

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008

New 11g Features in Oracle Developer Tools for Visual Studio. An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio An Oracle White Paper January 2008 New 11g Features in Oracle Developer Tools for Visual Studio Introduction... 3 Integration with Visual Studio

More information

2/24/2010 ClassApps.com

2/24/2010 ClassApps.com SelectSurvey.NET Training Manual This document is intended to be a simple visual guide for non technical users to help with basic survey creation, management and deployment. 2/24/2010 ClassApps.com Getting

More information

Installation & User Guide

Installation & User Guide SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON

More information

You can get real. RELIABILITY, PERFORMANCE and EFFECTIVE RESULTS. We Create Skillful Developer

You can get real. RELIABILITY, PERFORMANCE and EFFECTIVE RESULTS. We Create Skillful Developer You can get real RELIABILITY, PERFORMANCE and EFFECTIVE RESULTS We Create Skillful Developer CONTENT M-TEC SOFTWARE AND WEB DEVELOPMENT MODULES 2 Asp.net Training offered by M-TEC. Our mission is to provide

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

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 11.2 Last Updated: March 2014 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

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

maximizing IT productivity

maximizing IT productivity HTML5 jquery.net SharePoint Silverlight ASP.NET Consulting & Training Time is money and productive software developers save time. The Wahlin Group specializes in helping software developers learn development

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Richmond Systems. Self Service Portal

Richmond Systems. Self Service Portal Richmond Systems Self Service Portal Contents Introduction... 4 Product Overview... 4 What s New... 4 Configuring the Self Service Portal... 6 Web Admin... 6 Launching the Web Admin Application... 6 Setup

More information

Kentico 8 Certified Developer Exam Preparation Guide. Kentico 8 Certified Developer Exam Preparation Guide

Kentico 8 Certified Developer Exam Preparation Guide. Kentico 8 Certified Developer Exam Preparation Guide Kentico 8 Certified Developer Exam Preparation Guide 1 Contents Test Format 4 Score Calculation 5 Basic Kentico Functionality 6 Application Programming Interface 7 Web Parts and Widgets 8 Kentico Database

More information

Coding Standards for C#

Coding Standards for C# DotNetDaily.net Coding Standards for C# This document was downloaded from http://www.dotnetdaily.net/ You are permitted to use and distribute this document for any noncommercial purpose as long as you

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

The Great Office 365 Adventure

The Great Office 365 Adventure COURSE OVERVIEW The Great Office 365 Adventure Duration: 5 days It's no secret that Microsoft has been shifting its development strategy away from the SharePoint on-premises environment to focus on the

More information

Macromedia Dreamweaver 8 Developer Certification Examination Specification

Macromedia Dreamweaver 8 Developer Certification Examination Specification Macromedia Dreamweaver 8 Developer Certification Examination Specification Introduction This is an exam specification for Macromedia Dreamweaver 8 Developer. The skills and knowledge certified by this

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

GOA365: The Great Office 365 Adventure

GOA365: The Great Office 365 Adventure BEST PRACTICES IN OFFICE 365 DEVELOPMENT 5 DAYS GOA365: The Great Office 365 Adventure AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Professional Developers Instructor-led training with hands-on

More information

MadCap Software. Import Guide. Flare 11

MadCap Software. Import Guide. Flare 11 MadCap Software Import Guide Flare 11 Copyright 2015 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

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

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part

More information

California State University Polytechnic University. CIS 311 Interactive Web Development. Fall 2011

California State University Polytechnic University. CIS 311 Interactive Web Development. Fall 2011 California State University Polytechnic University CIS 311 Interactive Web Development Fall 2011 Basic Information Class time Tuesday Thursday 1:00 3:00 PM Class location C4-27 Textbooks Web Applications

More information

Wakanda Studio Features

Wakanda Studio Features Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser

More information

4.2 Understand Microsoft ASP.NET Web Application Development

4.2 Understand Microsoft ASP.NET Web Application Development L E S S O N 4 4.1 Understand Web Page Development 4.2 Understand Microsoft ASP.NET Web Application Development 4.3 Understand Web Hosting 4.4 Understand Web Services MTA Software Fundamentals 4 Test L

More information

70-487: Developing Windows Azure and Web Services

70-487: Developing Windows Azure and Web Services 70-487: Developing Windows Azure and Web Services The following tables show where changes to exam 70-487 have been made to include updates that relate to Windows Azure and Visual Studio 2013 tasks. These

More information

DreamFactory & Modus Create Case Study

DreamFactory & Modus Create Case Study DreamFactory & Modus Create Case Study By Michael Schwartz Modus Create April 1, 2013 Introduction DreamFactory partnered with Modus Create to port and enhance an existing address book application created

More information

Data Tool Platform SQL Development Tools

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

More information

MS-10232 - PRO: Designing Applications for Microsoft SharePoint 2010

MS-10232 - PRO: Designing Applications for Microsoft SharePoint 2010 MS-10232 - PRO: Designing Applications for Microsoft SharePoint 2010 Table of Contents Introduction Audience At Course Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information