NHibernate 2. Beginner's Guide. Rapidly retrieve data from your database into.net objects. Aaron B. Cure BIRMINGHAM - MUMBAI

Size: px
Start display at page:

Download "NHibernate 2. Beginner's Guide. Rapidly retrieve data from your database into.net objects. Aaron B. Cure BIRMINGHAM - MUMBAI"

Transcription

1

2 NHibernate 2 Beginner's Guide Rapidly retrieve data from your database into.net objects Aaron B. Cure BIRMINGHAM - MUMBAI

3 NHibernate 2 Beginner's Guide Copyright 2010 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: May 2010 Production Reference: Published by Packt Publishing Ltd. 32 Lincoln Road Olton Birmingham, B27 6PA, UK. ISBN Cover Image by Louise Barr (lou@frogboxdesign.co.uk)

4 Table of Contents Preface 1 Chapter 1: First Look 7 What is NHibernate? 8 Why would I use it? 8 Where do I get it? 8 Can I get help using NHibernate? 9 Database table 9 The XML mapping file (hbm.xml) 10 Plain Old CLR Object ( POCO ) 11 Data access 11 Look how easy it is to use! 12 Summary 14 Chapter 2: Database Layout and Design 15 Before you get started 15 Laying the foundation table layouts 16 Time for action creating an ordering system database 16 Table layouts 19 NHibernate assigned IDs 20 Relationships 21 Normal Form 25 Putting it all together 26 Time for action adding some tables to our Ordering system database 26 Summary 35 Chapter 3: A Touch of Class 37 Start up our applications 37 Creating objects 37 Time for action creating our first class 38 Public properties and private variables 45

5 Table of Contents Time for action adding a few properties 46 Converting SQL database types to.net types 50 Properties for Foreign Keys 51 Summary 54 Chapter 4: Data Cartography 55 What is mapping? 55 Types of mapping 56 XML mapping 56 Getting started 57 Classes 57 Properties 58 ID columns 59 Mapping our types 60 Time for action mapping basic types 60 Relationships 72 One-to-many relationships 72 Many-to-many relationships 74 Getting started 76 Time for action mapping relationships 77 Fluent mapping 79 Summary 82 Chapter 5: The Session Procession 83 What is an NHibernate session? 83 Time for action getting ready 84 What is a session factory? 93 Creating your first session 94 Why do we call.commit()? 95 NHibernate session versus database session? 96 Time for action creating a session and doing some CRUD 96 Sessions in ASP.NET 102 Summary 104 Chapter 6: I'm a Logger 105 Why do we need to log? 105 Why log4net? 106 Getting started 107 Configuration 108 Time for action adding some logging 110 NHibernate log messages 113 Appenders 115 [ ii ]

6 Table of Contents Creating a logger 118 Time for action adding some custom logging 120 Summary 123 Chapter 7: Configuration 125 Looking back 125 The basics of configuration 126 Taking a look at the SQL 129 Abstracting the configuration 130 Time for action moving our configuration 132 XML configuration 135 Summary 136 Chapter 8: Writing Queries 137 Using Data Access Objects 137 The basic Data Access Object 138 Time for action creating our basic Data Access Object 139 Data Access Object methods 143 Time for action adding some CRUD methods 146 Coding some GetX() methods 149 The FieldNames structure 150 Time for action expanding our capabilities 152 The ICriteria object 154 Creating a GetAll() method 155 Paging and Sorting GetAll() methods 157 Filtering ICriteria 159 Time for action replacing our inline code 161 Summary 162 Chapter 9: Binding Data 163 Why should we use data binding? 164 Time for action adding an ASP.NET project 164 Basic data binding techniques 170 Common data binding methods 173 A simple templated control 176 Creating a control instance 177 The <asp:listview> control 179 The <asp:objectdatasource> control 180 Time for action adding our first data bound control 182 Direct data binding 188 One last control the <asp:formview> 190 Summary 195 [ iii ]

7 Table of Contents Chapter 10:.NET Security 197 Built-in controls 197 Time for action adding a login to our page 200 Membership providers 201 Location security 202 Configuring our provider 204 Time for action create a membership provider 205 User roles 209 Role providers 210 Provider configuration 210 Summary 212 Chapter 11: It's a Generation Thing 213 Judging requirements 214 CodeSmith 215 nhib-gen 217 AjGenesis 218 Visual NHibernate 221 MyGeneration 221 Time for action using MyGeneration 223 NGen NHibernate Code Generator 227 NHModeller 228 Microsoft T4 templates 232 T4 hbm2net 232 Summary 233 Chapter 12: Odds and Ends 235 Unit of Work and Burrow 235 How does this relate to NHibernate? 237 Blog.Net blogging components 237 maxrequestlength 237 Converting CSS templates 238 Time for action converting a CSS template 239 XML documentation & GhostDoc 246 Summary 248 Appendix: Pop Quiz Answers 249 Chapter 2 Database Layout and Design 249 Relationships 249 Chapter 3 A Touch of Class 249 Mapping 249 Chapter 4 Data Cartography 250 Class mapping 250 [ iv ]

8 Table of Contents Chapter 5 The Session Procession 250 Creating and updating records 250 Chapter 6 I'm Logger 250 Logging 250 Chapter 7 Configuration 251 Basic configuration 251 Chapter 8 Writing Queries 251 Fieldnames and ICriteria 251 Chapter 9 Binding Data 251 Basic data binding 251 Chapter 10.NET Security 252 Access configuration 252 Chapter 12 Odds and Ends 252 Burrowing in 252 Index 253 [ v ]

9 Preface NHibernate is a popular, fast growing Object-Relational Mapper (ORM) with a helpful community of seasoned developers. It is used in thousands of commercial and open source projects. Armed with a set of simple (and mostly free) tools and the knowledge you'll gain from this book, you can quickly and easily create an entire data-bound website, desktop application, windows or web service, or virtually any other.net project you can conceive. What this book covers Chapter 1, First Look, discusses what an object-relational mapper is, what NHibernate is, and the features it provides us. Chapter 2, Database Layout and Design, discusses how your database is constructed, how the data is related, and how to optimize it for the best performance using NHibernate. Chapter 3, A Touch of Class, explains how creating classes to represent your data makes it easy for you to work with the data and allows you to branch from the design of the database, if need be. Chapter 4, Data Cartography, deals with the actual interface to the database with NHibernate, either using XML mapping files, Fluent NHibernate, or no mapping at all. We also talk about lazy loading, using a fieldnames structure to help avoid typos, and generating the database from our mapping files or classes. Chapter 5, The Session Procession, teaches you how to create NHibernate sessions, which use database sessions to retrieve and store data into the database. Chapter 6, I'm a Logger, teaches you how to use the log4net logging framework for creating our own logs and tap into the information provided by NHibernate (including SQL statements) to monitor and troubleshoot our application.

10 Preface Chapter 7, Configuration, explains how to configure our application so, we are ready to retrieve and store data into our database. Additional configuration options are discussed, as well as optional configuration properties for particular situations. Chapter 8, Writing Queries, discusses using NHibernate to actually retrieve data, to include individual records and collections of records. We talk about filtering records and using the fieldnames structure we created earlier to speed up our development. We also talk about adding parameters to make paging and sorting work in data-bound controls. Chapter 9, Binding Data, explains how to use the data methods we created earlier to build a web application that uses our data access layer, the ObjectDataSource, and other data controls to retrieve, display, and even insert/update database data. Chapter 10, NET Security Providers, presents information about controlling access to and restricting the usage of data within a.net web application. We discuss the use of custom membership and role providers with NHibernate to control access to information. Chapter 11, It's a Generation Thing, discusses how to use code generation techniques such as CodeSmith, NHib-Gen, and MyGeneration to automatically generate our data access layer to get us up and running that much quicker. Chapter 12, Odds and Ends, discusses some advanced topics such as the Burrow session management framework and the NHibernate SchemaExport tool. What you need for this book To successfully complete the examples in this book, you will need a copy of either Visual Studio 2008 or You can use any version as long as it includes the web application projects. This could be either a Visual Web Developer Express version or any full version such as Professional. In addition to Visual Studio, you will also need a SQL database server. The examples are generated using SQL Server Express 2008 and SQL Server Management Studio (SSMS) Express. You will also need to download the NHibernate binary files from sourceforge.net. Who this book is for This book is for new and seasoned developers of.net web or desktop applications who want a better way to access database data. It is a basic introduction to NHibernate, with enough information to get a solid foundation in using NHibernate. Some advanced concepts are presented where appropriate to enhance functionality or in situations where they are commonly used. [ 2 ]

11 Preface Conventions In this book, you will find several headings appearing frequently. To give clear instructions on how to complete a procedure or task, we use: Time for action heading 1. Action 1 2. Action 2 3. Action 3 Instructions often need some extra explanation so that they make sense, so they are followed with: What just happened? This heading explains the working of tasks or instructions that you have just completed. You will also find some other learning aids in the book, including: Pop quiz heading These are short multiple choice questions intended to help you test your own understanding. Have a go hero heading These set practical challenges and give you ideas for experimenting with what you have learned. You will also find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning. Code words in text are shown as follows: "This will give us a new DLL project called Ordering.Data inside a folder named Ordering, which contains a solution named Ordering." [ ]

12 Preface A block of code is set as follows: using System; using System.Collections.Generic; using System.Text; namespace Ordering.Data { class OrderHeader { } } When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold: public class OrderHeader { public OrderHeader() { } } Any command-line input or output is written as follows: 07:18: [10] INFO NHibernate.Cfg.Configuration - Mapping resource: Ordering.Data.Mapping.Address.hbm.xml New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: Right-click on the Ordering. Console application, and select Add New Item. Warnings or important notes appear in a box like this. Tips and tricks appear like this. [ ]

13 Preface Reader feedback Feedback from our readers is always welcome. Let us know what you think about this book what you liked or may have disliked. Reader feedback is important for us to develop titles that you really get the most out of. To send us general feedback, simply send an to and mention the book title via the subject of your message. If there is a book that you need and would like to see us publish, please send us a note in the SUGGEST A TITLE form on or suggest@packtpub.com. If there is a topic that you have expertise in and you are interested in either writing or contributing to a book on, see our author guide on Customer support Now that you are the proud owner of a Packt book, we have a number of things to help you to get the most from your purchase. Downloading the example code for the book Visit downloads/8907_code.zip to directly download the example code. The downloadable files contain instructions on how to use them. Errata Although we have taken every care to ensure the accuracy of our content, mistakes do happen. If you find a mistake in one of our books maybe a mistake in the text or the code we would be grateful if you would report this to us. By doing so, you can save other readers from frustration and help us improve subsequent versions of this book. If you find any errata, please report them by visiting selecting your book, clicking on the let us know link, and entering the details of your errata. Once your errata are verified, your submission will be accepted and the errata will be uploaded on our website, or added to any list of existing errata, under the Errata section of that title. Any existing errata can be viewed by selecting your title from [ ]

14 Preface Piracy Piracy of copyright material on the Internet is an ongoing problem across all media. At Packt, we take the protection of our copyright and licenses very seriously. If you come across any illegal copies of our works, in any form, on the Internet, please provide us with the location address or website name immediately so that we can pursue a remedy. Please contact us at copyright@packtpub.com with a link to the suspected pirated material. We appreciate your help in protecting our authors, and our ability to bring you valuable content. Questions You can contact us at questions@packtpub.com if you are having a problem with any aspect of the book, and we will do our best to address it. [ ]

15 1 First Look It seems like every single project we begin as developers, no matter how simple, requires some sort of storage. Sometimes this is a simple collection of values in an XML file or a key-value pair in a properties file. However, more often, we need to have access to larger volumes of data, represented in multiple related database tables. In either case, we are generally forced to reinvent the wheel, to create new data retrieval and storage methods for each piece of data we want to access. Enter NHibernate. In this chapter, we will discuss: What NHibernate is and why we should use it HBM mapping files Plain Old CLR Objects (POCOs) Data access classes A simple web page databound to a collection of NHibernate objects

16 First Look What is NHibernate? That's a great question, and I'm glad you asked! NHibernate is an open source persistence layer based on Object-Relational Mapping Techniques or simply a tool that creates a "virtual representation" of database objects within the code. According to the creators of NHibernate: NHibernate is a port of Hibernate Core for Java to the.net Framework. It handles persisting plain.net objects to and from an underlying relational database. Given an XML description of your entities and relationships, NHibernate automatically generates SQL for loading and storing the objects. In simple terms, NHibernate does all the database work, and we reap all the benefits! Instead of writing reams of SQL statements or creating stored procedures that "live" in a different place than our code, we can have all of our data access logic contained within our application. With a few simple "tricks" that we'll discuss in Chapter 4, Data Cartography, not only will our queries be effective, but they will also be validated by the compiler. Therefore, if our underlying table structure changes, the compiler will alert us that we need to change our queries! Why would I use it? Unless you love to write CRUD (Create, Retrieve, Update, Delete) methods over and over for each of the pieces of data you need to access (and I don't know a single developer who does), you are probably looking for a better method. If you're like me, then you know how to lay down an elegant database design (and if you don't, take a peek at Chapter 2, Database Layout and Design). Once the database is ready, you just want to use it! Wouldn't it be nice to create a few tables, and in just a few minutes, have a working set of forms that you can use for all of your basic CRUD operations, as well as a full set of queries to access the most common types of data? We'll discuss some of the ways to automatically generate your NHibernate data files in Chapter 11, It's a Generation Thing. Where do I get it? The home of the NHibernate project is at while the code is housed at SourceForge ( If you download the latest GA (Generally Available, also known as final or stable) bin release (binaries only, no source code) of the NHibernate project, you will have everything you need to get started. As of this writing, the current release is NHibernate GA-bin, and all of the examples have been developed using this version. This version is available at GA/NHibernate GA-bin.zip. [ ]

17 Can I get help using NHibernate? Chapter 1 There is a great community site for NHibernate on the Web called the NHibernate Forge. It is located at and it provides a wealth of resources for the new and veteran NHibernate user. Have a go hero looking at some sample files A basic NHibernate project is composed of three major parts. You will need a mapping file to tell NHibernate how the database is or should be (see the Mapping our types section in Chapter 4) constructed, some data access methods to tell NHibernate what data you want to retrieve or store into the database, and a POCO to allow you to interact with the data. While XML mapping files are commonly used in NHibernate projects, they are not the only way to map data to POCOs (more in Chapter 4). Take a look at some sample files, but don't get too hung up on them. We'll go into more detail in the later chapters. Database table The first item we need to use NHibernate is a database table to map against. In the following screenshot, we define a table named Login with a Primary Key column named Id, two nullable fields to store the FirstName and LastName, and two non-nullable fields to store the UserName and Password. [ ]

18 First Look The XML mapping file (hbm.xml) The following code snippet shows the Login.hbm.xml mapping file for this simple table, with all the information required not only to map the data, but also to create the database from the metadata contained within the mapping file. If we do not want to be able to generate the database from the mapping file, then we can omit all of the sql-type, unique, and index properties. Some immediate information you might pick up from the file are the name of the class that NHibernate will use to map database rows (BasicWebApplication.Common. DataObjects.Login), which is defined in the <class> tag. This says that the BasicWebApplication.Common.DataObjects.Login object is contained in the BasicWebApplication assembly. It further defines that the Login table is the database table we will be mapping to, using the <table> element. There is an <id> tag that defines what the unique identifier (ID) is for the database record, as well as how that identifier is expected to be created. In our case, the <generator class="hilo"> tag specifies that we will be using the hi/lo Persistent Object ID (POID) generator for IDs. The four string fields FirstName, LastName, UserName, and Password are then mapped to the four database columns of the same names, using the <property> tag. <?xml version="1.0" encoding="utf-8"?> <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="basicwebapplication.common.dataobjects" assembly="basicwebapplication"> <class name="login" table="login"> <id name="id" type="int32" unsaved-value="null"> <column name="id" /> <generator class="hilo" /> </id> <property name="firstname" type="string" /> <property name="lastname" type="string" /> <property name="username" type="string" /> <property name="password" type="string" /> </class> </hibernate-mapping> [ 10 ]

19 Plain Old CLR Object ( POCO ) Chapter 1 The Login.cs class shown in the following code snippet is the POCO, the class that NHibernate will use to map database rows. Each row in the database returned will be instantiated (also known as "newed up") in a new instance of the Login class. The collection of rows will be returned as a generic IList of Login objects or an IList<Login>. Notice how each property in the class Login maps directly to a property element in the hbm.xml file. We really have five public properties on this object, Id, FirstName, LastName, UserName, and Password. Each of these properties was defined earlier in the hbm.xml file and mapped to a database field. When NHibernate retrieves records from the database, it will create a new instance (also known as "new up") of a Login object for each record it retrieves and use the public "setter" (set function) for each property to fill out the object. public partial class Login { public Login() { } } public virtual int Id { get; set; } public virtual string FirstName { get; set; } public virtual string LastName { get; set; } public virtual string UserName { get; set; } public virtual string Password { get; set; } Data access The final class, LoginDataControl.cs, provides CRUD methods for data retrieval, storage, and removal. The session variable is an NHibernate session (you can find out more about session management in Chapter 5, The Session Procession). This class defines a few simple CRUD methods that are used quite often when manipulating database records. The GetById(int id) function allows the user to pass in an integer and retrieve the record with that ID. The GetAll() method returns all of the records in a given table. GetCountOfAll() returns a count of the records in the table, while allowing controls that handle pagination and record navigation to function. public class LoginDataControl { public LoginDataControl() { } ISession session; [ 11 ]

20 First Look } public Login GetById(int id) { Login retval = session.get<login>(id); return retval; } public IList<Login> GetAll() { ICriteria criteria = session.createcriteria<login>(); IList<Login> retval = criteria.list<login>(); return retval; } public int GetCountOfAll() { return GetAll().Count; } Look how easy it is to use! The sample Login.aspx ASP.NET file shows one of the best reasons why we use NHibernate. By using an ObjectDataSource, we can map the NHibernate objects directly to the data-bound controls that will display or interact with them. All we have to do is create an ObjectDataSource to retrieve the data from our data access class (LoginDataControl.cs), create a set of form fields to display the data (like the <asp:gridview> "LoginGrid" below), and let ASP.NET handle all of the tedious work for us. By the way, this page will work exactly as shown there is no page logic in the code behind or anywhere else. All we have in this code is a GridView to present the information and an ObjectDataSource to interact with our DataAccess classes and provide data for the GridView. The GridView has BoundField definitions for all of the fields in our database table as well as Sorting and Paging functions. The ObjectDataSource has methods mapped for Select, Select Count, Insert, and Update. When the GridView needs to perform one of these functions, it relies on the ObjectDataSource to handle these operations. Working in tandem, these two controls (as well as nearly any other data bound control) can provide a very quick and simple interface for your data! <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="BasicWebApplication.Web._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " [ 12 ]

Learning Drupal 6 Module Development

Learning Drupal 6 Module Development Learning Drupal 6 Module Development A practical tutorial for creating your first Drupal 6 modules with PHP Matt Butcher BIRMINGHAM - MUMBAI Learning Drupal 6 Module Development Copyright 2008 Packt Publishing

More information

Learning JavaScript Data Structures and Algorithms

Learning JavaScript Data Structures and Algorithms Learning JavaScript Data Structures and Algorithms Understand and implement classic data structures and algorithms using JavaScript Loiane Groner Learning JavaScript Data Structures and Algorithms Copyright

More information

Software Testing using Visual Studio 2010

Software Testing using Visual Studio 2010 Software Testing using Visual Studio 2010 Copyright 2010 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any

More information

TortoiseSVN 1.7. Beginner's Guide. Perform version control in the easiest way with the best SVN client TortoiseSVN.

TortoiseSVN 1.7. Beginner's Guide. Perform version control in the easiest way with the best SVN client TortoiseSVN. TortoiseSVN 1.7 Beginner's Guide Perform version control in the easiest way with the best SVN client TortoiseSVN Lesley Harrison BIRMINGHAM - MUMBAI TortoiseSVN 1.7 Beginner's Guide Copyright 2011 Packt

More information

Foundation Flash MX Applications

Foundation Flash MX Applications r Foundation Flash MX Applications Scott Mebberson Steve Webster 0 1: ~ I G Jil l l T 0 Ill t i I G l 1._ Foundation Flash MX Applications 2003 A press Originally published by friends of ED in 2003 All

More information

Selenium Testing Tools Cookbook

Selenium Testing Tools Cookbook Selenium Testing Tools Cookbook Second Edition Over 90 recipes to help you build and run automated tests for your web applications with Selenium WebDriver Unmesh Gundecha BIRMINGHAM - MUMBAI Selenium Testing

More information

Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P.

Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P. Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P. Russo Active Server Pages Active Server Pages are Microsoft s newest server-based technology for building dynamic and interactive

More information

Blackboard Portfolio System Owner and Designer Reference

Blackboard Portfolio System Owner and Designer Reference Blackboard Learning System Blackboard Portfolio System Owner and Designer Reference Application Pack 2 for Blackboard Learning System CE Enterprise License (Release 6) Application Pack 2 for Blackboard

More information

DotNetNuke Skinning Tutorial

DotNetNuke Skinning Tutorial DotNetNuke Skinning Tutorial A simple, clear, step-by-step tutorial to creating DotNetNuke skins to put you in control of the look and feel of your DotNetNuke website Darren Neese BIRMINGHAM - MUMBAI DotNetNuke

More information

Foreign-Key Associations

Foreign-Key Associations Search ASP.NET Sign In Join Home Get Started Downloads Web Pages Web Forms MVC Community Forums Overview Videos Samples Forum Books Open Source Home / Web Forms / Tutorials / Chapter 3. Continuing with

More information

PHP 5 e-commerce Development

PHP 5 e-commerce Development PHP 5 e-commerce Development Create a flexible framework in PHP for a powerful e-commerce solution Michael Peacock BIRMINGHAM - MUMBAI PHP 5 e-commerce Development Copyright 2010 Packt Publishing All rights

More information

Microsoft. SharePoint Your Organization s Name Here

Microsoft. SharePoint Your Organization s Name Here Microsoft SharePoint 2013 Your Organization s Name Here Table of Contents Table of Contents... 2 Introducing CustomGuide Training Manuals... 7 How it Works... 8 The Fundamentals... 9 Introduction to SharePoint...

More information

User Manual. SmartLite WebQuiz SQL Edition

User Manual. SmartLite WebQuiz SQL Edition User Manual SmartLite WebQuiz SQL Edition SmartLite WebQuiz SQL All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

SPRING MVC: BEGINNER'S GUIDE BY AMUTHAN G DOWNLOAD EBOOK : SPRING MVC: BEGINNER'S GUIDE BY AMUTHAN G PDF

SPRING MVC: BEGINNER'S GUIDE BY AMUTHAN G DOWNLOAD EBOOK : SPRING MVC: BEGINNER'S GUIDE BY AMUTHAN G PDF Read Online and Download Ebook SPRING MVC: BEGINNER'S GUIDE BY AMUTHAN G DOWNLOAD EBOOK : SPRING MVC: BEGINNER'S GUIDE BY AMUTHAN G PDF Click link bellow and free register to download ebook: SPRING MVC:

More information

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager

MAPLOGIC CORPORATION. GIS Software Solutions. Getting Started. With MapLogic Layout Manager MAPLOGIC CORPORATION GIS Software Solutions Getting Started With MapLogic Layout Manager Getting Started with MapLogic Layout Manager 2011 MapLogic Corporation All Rights Reserved 330 West Canton Ave.,

More information

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey:

Survey Creation Workflow These are the high level steps that are followed to successfully create and deploy a new survey: Overview of Survey Administration The first thing you see when you open up your browser to the Ultimate Survey Software is the Login Page. You will find that you see three icons at the top of the page,

More information

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 2: SEP. 8TH INSTRUCTOR: JIAYIN WANG

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 2: SEP. 8TH INSTRUCTOR: JIAYIN WANG CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 2: SEP. 8TH INSTRUCTOR: JIAYIN WANG 1 Notice Class Website http://www.cs.umb.edu/~jane/cs114/ Reading Assignment Chapter 1: Introduction to Java Programming

More information

Oracle Business Intelligence: The Condensed Guide to Analysis and Reporting

Oracle Business Intelligence: The Condensed Guide to Analysis and Reporting Oracle Business Intelligence: The Condensed Guide to Analysis and Reporting A fast track guide to uncovering the analytical power of Oracle Business Intelligence: Analytic SQL, Oracle Discoverer, Oracle

More information

Android SQLite Essentials

Android SQLite Essentials Android SQLite Essentials Table of Contents Android SQLite Essentials Credits About the Authors About the Reviewers www.packtpub.com Support files, ebooks, discount offers and more Why Subscribe? Free

More information

RealPresence Media Manager

RealPresence Media Manager RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 USER GUIDE Software 6.7 January 2015 3725-75302-001A RealPresence Media Manager Polycom, Inc. 1 Copyright 2015, Polycom, Inc. All rights

More information

MadCap Software. Index Guide. Flare 2017 r2

MadCap Software. Index Guide. Flare 2017 r2 MadCap Software Index Guide Flare 2017 r2 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Book IX. Developing Applications Rapidly

Book IX. Developing Applications Rapidly Book IX Developing Applications Rapidly Contents at a Glance Chapter 1: Building Master and Detail Pages Chapter 2: Creating Search and Results Pages Chapter 3: Building Record Insert Pages Chapter 4:

More information

BOLT eportfolio Student Guide

BOLT eportfolio Student Guide BOLT eportfolio Student Guide Contents BOLT EPORTFOLIO STUDENT GUIDE... I BOLT EPORTFOLIO BASICS... 3 BOLT eportfolio user interface overview... 3 Dashboard... 3 My Items Page... 4 Explore Page... 5 Sharing

More information

Campaign Walkthrough

Campaign Walkthrough Email Campaign Walkthrough This guide is distributed with software that includes an end-user agreement, this guide, as well as the software described in it, is furnished under license and may be used or

More information

Kindle Books InfoPath With SharePoint 2010 How-To

Kindle Books InfoPath With SharePoint 2010 How-To Kindle Books InfoPath With SharePoint 2010 How-To Real, step-by-step solutions for creating and managing data forms in SharePoint 2010 with InfoPath: fast, accurate, proven, and easy to use  A concise,

More information

CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1

CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1 FOREWORD INTRODUCTION xxv xxvii CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1 Microsoft Visual Web Developer 2 Getting Visual Web Developer 3 Installing Visual Web Developer Express 3 Creating Your First

More information

Javelin Workbench Tutorial. Version 3.0 September, 2009

Javelin Workbench Tutorial. Version 3.0 September, 2009 Javelin Workbench Tutorial Version 3.0 September, 2009 OVERVIEW The Javelin Workbench Beginner Tutorial walks you through the steps of building online feedback forms for the purposes of data collection.

More information

Exploring.Net Orcas. Contents. By Punit Ganshani

Exploring.Net Orcas. Contents. By Punit Ganshani Exploring.Net Orcas By Punit Ganshani Punit Ganshani, employed by Cognizant Technology Solutions India Pvt. Ltd (NASDAQ: CTSH), a global IT services provider headquartered in Teaneck, N.J., is an author

More information

Learning and Development. UWE Staff Profiles (USP) User Guide

Learning and Development. UWE Staff Profiles (USP) User Guide Learning and Development UWE Staff Profiles (USP) User Guide About this training manual This manual is yours to keep and is intended as a guide to be used during the training course and as a reference

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

IBM TRIRIGA Application Platform Version 3 Release 4.2. Object Migration User Guide

IBM TRIRIGA Application Platform Version 3 Release 4.2. Object Migration User Guide IBM TRIRIGA Application Platform Version 3 Release 4.2 Object Migration User Guide Note Before using this information and the product it supports, read the information in Notices on page 41. This edition

More information

Sql Server Working With Schemas Vs Database Role Membership

Sql Server Working With Schemas Vs Database Role Membership Sql Server Working With Schemas Vs Database Role Membership This is the third installment in a series on assigning SQL Server permissions. In the understanding of how they work and how they sometimes inherit

More information

Advanced WCF 4.0 .NET. Web Services. Contents for.net Professionals. Learn new and stay updated. Design Patterns, OOPS Principles, WCF, WPF, MVC &LINQ

Advanced WCF 4.0 .NET. Web Services. Contents for.net Professionals. Learn new and stay updated. Design Patterns, OOPS Principles, WCF, WPF, MVC &LINQ Serialization PLINQ WPF LINQ SOA Design Patterns Web Services 4.0.NET Reflection Reflection WCF MVC Microsoft Visual Studio 2010 Advanced Contents for.net Professionals Learn new and stay updated Design

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

District 5910 Website Quick Start Manual Let s Roll Rotarians!

District 5910 Website Quick Start Manual Let s Roll Rotarians! District 5910 Website Quick Start Manual Let s Roll Rotarians! All Rotarians in District 5910 have access to the Members Section of the District Website THE BASICS After logging on to the system, members

More information

Professional Edition User Guide

Professional Edition User Guide Professional Edition User Guide Pronto, Visualizer, and Dashboards 2.0 Birst Software Version 5.28.6 Documentation Release Thursday, October 19, 2017 i Copyright 2015-2017 Birst, Inc. Copyright 2015-2017

More information

--Microsoft-- --Windows Phone--

--Microsoft-- --Windows Phone-- --Microsoft-- --Windows Phone-- Microsoft Windows Phone Course 10553A: Fundamentals of XAML and Microsoft Expression Blend Course Outline Module 1: Binding in XAML This module familiarizes the students

More information

Product Documentation. ER/Studio Portal. User Guide. Version Published February 21, 2012

Product Documentation. ER/Studio Portal. User Guide. Version Published February 21, 2012 Product Documentation ER/Studio Portal User Guide Version 1.6.3 Published February 21, 2012 2012 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other Embarcadero

More information

Atlassian Confluence 5 Essentials

Atlassian Confluence 5 Essentials Atlassian Confluence 5 Essentials Stefan Kohler Chapter No. 5 "Collaborating in Confluence" In this package, you will find: A Biography of the author of the book A preview chapter from the book, Chapter

More information

What You Need to Use this Book

What You Need to Use this Book What You Need to Use this Book The following is the list of recommended system requirements for running the code in this book: Windows 2000 Professional or Windows XP Professional with IIS installed Visual

More information

How & Why We Subnet Lab Workbook

How & Why We Subnet Lab Workbook i How & Why We Subnet Lab Workbook ii CertificationKits.com How & Why We Subnet Workbook Copyright 2013 CertificationKits LLC All rights reserved. No part of this book maybe be reproduced or transmitted

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

/smlcodes /smlcodes /smlcodes JIRA. Small Codes. Programming Simplified. A SmlCodes.Com Small presentation. In Association with Idleposts.

/smlcodes /smlcodes /smlcodes JIRA. Small Codes. Programming Simplified. A SmlCodes.Com Small presentation. In Association with Idleposts. /smlcodes /smlcodes /smlcodes JIRA T U T O R I A L Small Codes Programming Simplified A SmlCodes.Com Small presentation In Association with Idleposts.com For more tutorials & Articles visit SmlCodes.com

More information

Beginning ASP.NET. 4.5 in C# Matthew MacDonald

Beginning ASP.NET. 4.5 in C# Matthew MacDonald Beginning ASP.NET 4.5 in C# Matthew MacDonald Contents About the Author About the Technical Reviewers Acknowledgments Introduction xxvii xxix xxxi xxxiii UPart 1: Introducing.NET. 1 & Chapter 1: The Big

More information

Writing & Executing a Software Validation Protocol: Plain and Simple

Writing & Executing a Software Validation Protocol: Plain and Simple Writing & Executing a Software Validation Protocol: Plain and Simple The Validation Specialists askaboutvalidation Connecting the Life Sciences Writing & Executing a Software Validation Protocol: Plain

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

Revision History Overview Feature Summary Knowledge Management Policy Automation Platform Agent Browser Workspaces Agent Browser Desktop Automation

Revision History Overview Feature Summary Knowledge Management Policy Automation Platform Agent Browser Workspaces Agent Browser Desktop Automation TABLE OF CONTENTS Revision History 3 Overview 3 Feature Summary 3 Knowledge Management 5 Implement Sitemap XML in Web Collection Crawling 5 Searchable Product Tags 5 Policy Automation 5 Integration Cloud

More information

Head First C#, 2E: A Learner's Guide To Real-World Programming With Visual C# And.NET (Head First Guides) Free Ebooks PDF

Head First C#, 2E: A Learner's Guide To Real-World Programming With Visual C# And.NET (Head First Guides) Free Ebooks PDF Head First C#, 2E: A Learner's Guide To Real-World Programming With Visual C# And.NET (Head First Guides) Free Ebooks PDF You want to learn C# programming, but you're not sure you want to suffer through

More information

Getting Started with EPiServer 4

Getting Started with EPiServer 4 Getting Started with EPiServer 4 Abstract This white paper includes information on how to get started developing EPiServer 4. The document includes, among other things, high-level installation instructions,

More information

WORDPRESS 101 A PRIMER JOHN WIEGAND

WORDPRESS 101 A PRIMER JOHN WIEGAND WORDPRESS 101 A PRIMER JOHN WIEGAND CONTENTS Starters... 2 Users... 2 Settings... 3 Media... 6 Pages... 7 Posts... 7 Comments... 7 Design... 8 Themes... 8 Menus... 9 Posts... 11 Plugins... 11 To find a

More information

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and Hello, and welcome to another episode of Getting the Most Out of IBM U2. This is Kenny Brunel, and I'm your host for today's episode which introduces wintegrate version 6.1. First of all, I've got a guest

More information

Birst Pronto: Connect to Data in Pronto

Birst Pronto: Connect to Data in Pronto Posted by Dee Elling Jan 28, 2017 In the first installment of this series, Get Started, you saw the different pages in Pronto and how to navigate between them. Now let's get some data into Pronto so you

More information

FileMaker, Inc. All Rights Reserved. Document Version 2.0 FileMaker, Inc Patrick Henry Drive Santa Clara, California FileMaker

FileMaker, Inc. All Rights Reserved. Document Version 2.0 FileMaker, Inc Patrick Henry Drive Santa Clara, California FileMaker User s Guide 2003-2004 FileMaker, Inc. All Rights Reserved. Document Version 2.0 FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc., registered

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

R EIN V E N TIN G B U S I N E S S I L E M A. MARK5 Basic guide. - All rights reserved

R EIN V E N TIN G B U S I N E S S I L E M A. MARK5 Basic guide.   - All rights reserved R EIN V E N TIN G B U S I N E S S I L E M A MARK5 Basic guide 0.0 Welcome In this brief guide we will cover the basics of MARK5 such as starting up, understanding the MARK5 interface basics and sending

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Who should use this manual. Signing into WordPress

Who should use this manual. Signing into WordPress WordPress Manual Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 Pages vs. Posts... 5 Adding & Editing Your Web

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

HTML5 Games Development by Example

HTML5 Games Development by Example HTML5 Games Development by Example Beginner's Guide Create six fun games using the latest HTML5, Canvas, CSS, and JavaScript techniques Makzan BIRMINGHAM - MUMBAI HTML5 Games Development by Example Beginner's

More information

Selenium Testing Tools Cookbook

Selenium Testing Tools Cookbook Selenium Testing Tools Cookbook Over 90 recipes to build, maintain, and improve test automation with Selenium WebDriver Unmesh Gundecha BIRMINGHAM - MUMBAI Selenium Testing Tools Cookbook Copyright 2012

More information

An Easy to Understand Guide 21 CFR Part 11

An Easy to Understand Guide 21 CFR Part 11 An Easy to Understand Guide 21 CFR Part 11 The Validation Specialists askaboutvalidation Connecting the Lifesciences An Easy to Understand Guide 21 CFR Part 11 Published by Premier Validation 21 CFR Part

More information

Planning and Designing Your Site p. 109 Design Concepts p. 116 Summary p. 118 Defining Your Site p. 119 The Files Panel p. 119 Accessing Your Remote

Planning and Designing Your Site p. 109 Design Concepts p. 116 Summary p. 118 Defining Your Site p. 119 The Files Panel p. 119 Accessing Your Remote Acknowledgments p. xxv Introduction p. xxvii Getting Started with Dreamweaver MX 2004 Is It 2004 Already? p. 3 The Internet p. 4 TCP/IP p. 7 Hypertext Transfer Protocol p. 8 Hypertext Markup Language p.

More information

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide

Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Solution 7.1 MP1 Installation and Configuration Guide Symantec Workflow Installation and Configuration Guide The software described in this book is furnished under a license agreement

More information

Custom Functions User's Guide SAP Data Services 4.2 (14.2.0)

Custom Functions User's Guide SAP Data Services 4.2 (14.2.0) Custom Functions User's Guide SAP Data Services 4.2 (14.2.0) Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

User Guide. Datgel. Photo Tool gint Add-In 3

User Guide. Datgel. Photo Tool gint Add-In 3 User Guide Photo Tool gint Add-In 3 DPT-UG-001-3.02 June 2011 Disclaimer The information in this publication is subject to change without notice and does not represent a commitment on the part of Pty Ltd.

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Building an ASP.NET Website

Building an ASP.NET Website In this book we are going to build a content-based ASP.NET website. This website will consist of a number of modules, which will all fit together to produce the finished product. We will build each module

More information

ASP.NET MVC 1.0 Quickly

ASP.NET MVC 1.0 Quickly ASP.NET MVC 1.0 Quickly Design, develop, and test powerful and robust web applications the agile way, with MVC framework Maarten Balliauw BIRMINGHAM - MUMBAI ASP.NET MVC 1.0 Quickly Copyright 2009 Packt

More information

MCAD/MCSD Self-Paced Training Kit: Developing Windows -Based Applications With Microsoft Visual BasicÂ.NET And Microsoft Visual C#Â.

MCAD/MCSD Self-Paced Training Kit: Developing Windows -Based Applications With Microsoft Visual BasicÂ.NET And Microsoft Visual C#Â. MCAD/MCSD Self-Paced Training Kit: Developing Windows -Based Applications With Microsoft Visual BasicÂ.NET And Microsoft Visual C#Â.NET, Second Ed:... C#(r).Net, Second Ed (Pro-Certification) Free Download

More information

DOT NET COURSE BROCHURE

DOT NET COURSE BROCHURE Page 1 1Pointer Technology Chacko Towers,Anna nagar Main Road, Anna Nager(Annai Insititute 2nd Floor) Pondicherry-05 Mobile :+91-9600444787,9487662326 Website : http://www.1pointer.com/ Email : info@1pointer.com/onepointertechnology@gmail.com

More information

MOODLE MANUAL TABLE OF CONTENTS

MOODLE MANUAL TABLE OF CONTENTS 1 MOODLE MANUAL TABLE OF CONTENTS Introduction to Moodle...1 Logging In... 2 Moodle Icons...6 Course Layout and Blocks...8 Changing Your Profile...10 Create new Course...12 Editing Your Course...15 Adding

More information

Web Development with Java

Web Development with Java Web Development with Java Tim Downey Web Development with Java Using Hibernate, JSPs and Servlets Tim Downey, BS, MS Florida International University Miami, FL 33199, USA British Library Cataloguing in

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

MARKETING VOL. 1

MARKETING VOL. 1 EMAIL MARKETING VOL. 1 TITLE: Email Promoting: What You Need To Do Author: Iris Carter-Collins Table Of Contents 1 Email Promoting: What You Need To Do 4 Building Your Business Through Successful Marketing

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

IOS 9 App Development Essentials: Learn To Develop IOS 9 Apps Using Xcode 7 And Swift 2 PDF

IOS 9 App Development Essentials: Learn To Develop IOS 9 Apps Using Xcode 7 And Swift 2 PDF IOS 9 App Development Essentials: Learn To Develop IOS 9 Apps Using Xcode 7 And Swift 2 PDF ios 9 App Development Essentials is latest edition of this popular book series and has now been fully updated

More information

Getting Help...71 Getting help with ScreenSteps...72

Getting Help...71 Getting help with ScreenSteps...72 GETTING STARTED Table of Contents Onboarding Guides... 3 Evaluating ScreenSteps--Welcome... 4 Evaluating ScreenSteps--Part 1: Create 3 Manuals... 6 Evaluating ScreenSteps--Part 2: Customize Your Knowledge

More information

Read & Download (PDF Kindle) XML For Dummies

Read & Download (PDF Kindle) XML For Dummies Read & Download (PDF Kindle) XML For Dummies See how XML works for business needs and RSS feeds Create consistency on the Web, or tag your data for different purposes Tag -- XML is it! XML tags let you

More information

Database Application Architectures

Database Application Architectures Chapter 15 Database Application Architectures Database Systems(Part 2) p. 221/287 Database Applications Most users do not interact directly with a database system The DBMS is hidden behind application

More information

Steps To Create Approval Workflow In Sharepoint Designer 2007

Steps To Create Approval Workflow In Sharepoint Designer 2007 Steps To Create Approval Workflow In Sharepoint Designer 2007 I've managed to build the bespoke emails but cannot seem to replicate the tasks Browse other questions tagged designer-workflow approval or

More information

Design and Implementation of File Sharing Server

Design and Implementation of File Sharing Server Design and Implementation of File Sharing Server Firas Abdullah Thweny Al-Saedi #1, Zaianb Dheya a Al-Taweel *2 # 1,2 Computer Engineering Department, Al-Nahrain University, Baghdad, Iraq Abstract this

More information

Copyright. For more information, please read the Disclosures and Disclaimers section at the end of this ebook. First PDF Edition, February 2013

Copyright. For more information, please read the Disclosures and Disclaimers section at the end of this ebook. First PDF Edition, February 2013 Copyright This ebook is Copyright 2013 Teresa Miller (the Author ). All Rights Reserved. Published in the United States of America. The legal notices, disclosures, and disclaimers in the front and back

More information

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide Release 8.0.2.0.0 February 2016 E65393-01 Oracle Financial Services Governance, Risk, and Compliance Workflow Manager

More information

Creating databases using SQL Server Management Studio Express

Creating databases using SQL Server Management Studio Express Creating databases using SQL Server Management Studio Express With the release of SQL Server 2005 Express Edition, TI students and professionals began to have an efficient, professional and cheap solution

More information

Teacher Guide. Edline -Teachers Guide Modified by Brevard Public Schools Revised 6/3/08

Teacher Guide. Edline -Teachers Guide Modified by Brevard Public Schools  Revised 6/3/08 Teacher Guide Teacher Guide EDLINE This guide was designed to give you quick instructions for the most common class-related tasks that you will perform while using Edline. Please refer to the online Help

More information

1. Download and install the Firefox Web browser if needed. 2. Open Firefox, go to zotero.org and click the big red Download button.

1. Download and install the Firefox Web browser if needed. 2. Open Firefox, go to zotero.org and click the big red Download button. Get Started with Zotero A free, open-source alternative to products such as RefWorks and EndNote, Zotero captures reference data from many sources, and lets you organize your citations and export bibliographies

More information

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables

Instructor: Craig Duckett. Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables Instructor: Craig Duckett Lecture 03: Tuesday, April 3, 2018 SQL Sorting, Aggregates and Joining Tables 1 Assignment 1 is due LECTURE 5, Tuesday, April 10 th, 2018 in StudentTracker by MIDNIGHT MID-TERM

More information

Persistence on Score Management of Japanese-Language Proficiency Test Based on NHibernate Fengjuan Liu

Persistence on Score Management of Japanese-Language Proficiency Test Based on NHibernate Fengjuan Liu 5th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2015) Persistence on Score Management of Japanese-Language Proficiency Test Based on NHibernate Fengjuan Liu Teaching

More information

Setting Up A WordPress Blog

Setting Up A WordPress Blog Setting Up A WordPress Blog Introduction WordPress can be installed alongside an existing website to be used solely as the 'blog' element of a website, or it can be set up as the foundation for an entire

More information

Customer Helpdesk User Manual

Customer Helpdesk User Manual Customer Helpdesk User Manual TABLE OF CONTENTS 1 INTRODUCTION... 3 2 HANDLING OF THE PROGRAM... 3 2.1 Preface... 3 2.2 Log In... 3 2.3 Reset Your Password... 4 2.4 Changing Personal Password... 4 3 PROGRAM

More information

Kindle Books Microsoft SharePoint Designer 2010 Step By Step

Kindle Books Microsoft SharePoint Designer 2010 Step By Step Kindle Books Microsoft SharePoint Designer 2010 Step By Step The smart way to build applications with Microsoft SharePoint Designer 2010 -- one step at a time! Experience learning made easy -- and quickly

More information

Building Websites with the ASP.NET Community Starter Kit. K. Scott Allen Cristian Darie

Building Websites with the ASP.NET Community Starter Kit. K. Scott Allen Cristian Darie Building Websites with the ASP.NET Community Starter Kit K. Scott Allen Cristian Darie Building Websites with the ASP.NET Community Starter Kit Copyright 2004 Packt Publishing All rights reserved. No part

More information

Simple sets of data can be expressed in a simple table, much like a

Simple sets of data can be expressed in a simple table, much like a Chapter 1: Building Master and Detail Pages In This Chapter Developing master and detail pages at the same time Building your master and detail pages separately Putting together master and detail pages

More information

facebook a guide to social networking for massage therapists

facebook a guide to social networking for massage therapists facebook a guide to social networking for massage therapists table of contents 2 3 5 6 7 9 10 13 15 get the facts first the importance of social media, facebook and the difference between different facebook

More information

ADO.NET In A Nutshell Download Free (EPUB, PDF)

ADO.NET In A Nutshell Download Free (EPUB, PDF) ADO.NET In A Nutshell Download Free (EPUB, PDF) Written by experts on the MicrosoftÂ.NET programming platform, ADO.NET in a Nutshell delivers everything.net programmers will need to get a jump-start on

More information

EMC Documentum Forms Builder

EMC Documentum Forms Builder EMC Documentum Forms Builder Version 6 User Guide P/N 300-005-243 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1994-2007 EMC Corporation. All rights

More information

eprocurement Web Site

eprocurement Web Site eprocurement Web Site of Wyandotte County, Kansas City Kansas Supplier s Guide Document Author: UG WYCOKCK Document Date: 7/30/2015 Document Version: 3.60 Table of Contents 1. Introduction... 3 2. Contact

More information

In Figure 6, users can view their profile information in the Profile tab displayed by. Figure 8 Figure 7

In Figure 6, users can view their profile information in the Profile tab displayed by. Figure 8 Figure 7 This guide is designed to give new users a brief overview of Learn360. It will review how to begin using the many tools, features and functionality Learn360 has to offer. Login Figures 1, 2 and 3 feature

More information

ClientBase. Windows. FUNctionality

ClientBase. Windows. FUNctionality ClientBase Windows FUNctionality Table of Contents Page 1 Page 2 Page 3 Page 5 Page 7 ClientBase Introduction How to Create a Profile How to Create a Reminder How to Create a Note How to Start a Rescard

More information

HTML5 Responsive Notify 2 DMXzone

HTML5 Responsive Notify 2 DMXzone Table of contents Table of contents... 1 About HTML5 Responsive Notify 2... 2 Features in Detail... 3 The Basics: Insert HTML5 Responsive Notify 2 on your Page... 10 Advanced: Retrieve your Notifications

More information