Home > Store

ASP.NET and VB.NET Web Programming

Register your product to gain access to bonus material or receive a coupon.

ASP.NET and VB.NET Web Programming

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2002
  • Dimensions: 7-3/8" x 9-1/4"
  • Pages: 768
  • Edition: 1st
  • Book
  • ISBN-10: 0-201-73440-0
  • ISBN-13: 978-0-201-73440-9

With ASP.NET, developers can create robust, high-performance Web applications and services in much the same way they've long constructed Windows applications: visually and rapidly. Whether you're an experienced Web developer or not, ASP.NET and VB.NET Web Programming will show you how to make the most of ASP.NET, using Microsoft's most popular development language -- Visual Basic. Matthew Crouch begins by introducing the .NET platform and outlining its advantages for Web development when compared with alternative approaches. Next, he presents a crash course in Visual Basic .NET programming for both new VB developers and those upgrading from earlier versions. Crouch introduces ASP.NET's programming model and key features -- dissecting ASP.NET Web pages, introducing ASP.NET's powerful Web, HTML, and rich controls, and walking step-by-step through the creation of a full ASP.NET application. Next, he demonstrates how to access the .NET Framework Class Library from ASP.NET, leveraging .NET's built-in directory services, message queueing, Internet communication, and XML data manipulation facilities. The book also contains extensive coverage of building .NET managed components and Web services with Visual Basic .NET; accessing data with ADO.NET; and securing your .NET applications. The accompanying CD contains all the source code from the book. For all Web application developers who are just starting out with .NET.

Downloads

Source Code

Source Code and Online Resources

source code

Sample Content

Online Sample Chapter

Building .NET Managed Components for COM+

Downloadable Sample Chapter

Click below for Sample Chapter(s) related to this title:
Sample Chapter 5

Table of Contents



Preface.


1. The .NET Platform and the Web.

The Pathway to Web Applications.

The Web Client/Server Model.

Web Clients and Web Servers.

Protocols for Web Client/Server Communication.

Server-Side Processing with CGI Programs.

Disadvantages of Using CGI.

Components of ASP.NET and the .NET Framework.

Overview of Internet Information Server.

ISAPI Extensions.

ISAPI Filters.

Overview of ASP.NET.

Web Forms.

The .NET Common Language Runtime and Class Library.

Managed Components in .NET.

Web Services.

Language Independence in the .NET Framework.

COM+ Component Services and .NET.

Direction and Plans for .NET.

What's Ahead.



2. The VB.NET Crash Course.

What Is VB.NET?

Hello World (Yet Again).

Lab 2-1: Your First VB Application.

Variables, Constants, and Operators.

Variable Types.

Declaring and Assigning Variables.

Scope and Lifetime of Variables.

Arrays.

Converting Data Types.

Using Constants.

Arithmetic and Comparison Operators.

Modularizing Your Code—Functions and Subroutines.

Using Functions.

Using Subroutines.

Controlling Program Flow.

Conditional Processing.

Flow Control Statements.

Loops.

Handling Errors and Exceptions.

Unstructured Error Handling.

Structured Exception Handling.

Object-Oriented Programming.

Class Basics.

Class Properties.

Constructors and Destructors.

Inheritance.

Overridden Functions.

Overloading.

Polymorphism Overview.

Interfaces.

Implementing Polymorphism by Using Interfaces.

Multithreaded Programming.

Thread Synchronization.

Events and Thread Synchronization.

Summary.

What's Ahead.



3. Working with ASP.NET.

The Features of ASP.NET.

The Anatomy of ASP.NET Pages.

The Code Structure of ASP.NET.

Execution Stages and State Management.

The Events Model for the Page Class.

Introducing Web Forms.

VS.NET Web Applications and Other IDE Basics.

Separating Content and Code—the Code-Behind Feature.

Application Configuration.

Structure and Configuration of the Global.asax File.

Using HTML Controls.

The HTMLForm Control.

The HTMLAnchor Control.

The HTMLButton Control.

The HTMLGenericControl Control.

The HTMLImage Control.

The HTMLInputButton Control.

The HTMLInputCheckBox Control.

The HTMLInputFile Control.

The HTMLInputHidden Control.

The HTMLInputImage Control.

The HTMLInputRadioButton Control.

The HTMLInputText Control.

The HTMLSelect Control.

The HTMLTable, HTMLTableCell, and HTMLTableRow Controls.

The HTMLTextArea Control.

Using Web Controls.

Shared Web Control Properties.

Web Controls for Displaying and Formatting Data.

The Label Control.

The Panel Control.

The Table, TableRow, and TableCell Controls.

Web Controls for Creating Buttons.

The Button Control.

The ImageButton Control.

The LinkButton Control.

Demonstration of Web Button Controls.

Web Control for Inputting Text.

The TextBox Control.

Web Controls for Selecting Choices.

The CheckBox Control.

The RadioButton Control.

The CheckBoxList and RadioButtonList Controls.

Web Controls for Creating Lists.

The ListBox Control.

The DropDownList Control.

Miscellaneous Basic Controls.

The Hyperlink Control.

The Image Control.

Creating a Simple ASP.NET Application.

Lab 3-1: Your First ASP.NET Project.

ASP.NET Page Directives.

The @ Page and @ Control Directives.

The @ Import Directive.

The @ Register Directive.

The @ Assembly Directive.

The @ OutputCache Directive.

ASP.NET Rich Controls.

The Calendar Control.

The AdRotator Control.

Validation Controls.

The BaseValidator Control.

The RequiredFieldValidator Control.

The CompareValidator Control.

The RangeValidator Control.

The RegularExpressionValidator Control.

The CustomValidator Control.

Data List Controls.

The Repeater Control.

The DataGrid Control.

The DataList Control.

Building the XYZ Corporation Home Page.

Lab 3-2: The XYZ Corporation Home Page.

User Controls.

Authoring a User Control.

Saving State with the StateBag Object.

ASP.NET Intrinsic Objects.

The HttpRequest Object.

The HttpResponse Object.

The HttpServerUtility Object.

The HttpApplicationState Object.

The HttpSessionState Object.

The ObjectContext Object.

Summary.

What's Ahead.



4. Using the .NET Framework Class Library.

Common Features of the .NET Framework Class Library.

Using Data Collections (System.Collections).

The ArrayList Class.

The Stack Class.

The Queue Class.

The Hashtable Class.

Handling File Input/Output and Directories (System.IO).

Reading Text Files.

Writing Text Files.

Using Binary File I/O with the FileStream Object.

Reading Binary Files.

Writing Binary Files.

Performing File Operations.

Getting File Information.

Copying, Moving, and Renaming Files.

Deleting Files.

Creating, Moving, and Renaming Directories.

Creating and Getting Directory Information.

Accessing Directory Contents.

Watching the File System for Changes (System.IO.FileSystemWatcher).

Using the Windows Event Log (System.Diagnostics).

Working with Active Directory Services (System.DirectoryServices).

Displaying Active Directory Services Contents.

Searching Active Directory Services Contents.

Modifying Active Directory Services Contents.

Using Message Queues (System.Messaging).

Creating a Queue.

Sending a Message to a Queue.

Dequeuing a Message.

Communicating with Servers on the Internet (System.Web and System.Net).

A Simple TCP Client Application.

A Simple TCP Server Application.

HTTP Communication.

Manipulating XML Data (System.XML).

Creating Tree-Based XML Documents.

Loading and Searching Tree-Based XML Documents.

Reading Stream-Based XML Data.

Writing Stream-Based XML Data.

Formatting XML Data for Display.

Sending Internet E-mail (System.Web.Mail).

Summary.

What's Ahead.



5. Building .NET Managed Components for COM+.

The Concept of Managed Code Execution.

The Common Language Runtime.

The Common Type System.

Just-in-Time Code Compilation.

Code Assemblies.

Application Domains.

COM+ Component Services.

Overview of COM.

Overview of Transactions.

Automatic Transactions.

COM+ Applications.

COM+ Security.

.NET Classes and COM+ Component Services.

Using VB.NET to Develop Managed Components.

Defining Namespaces.

Using the Class Library.

Using Component “ing”.

Adding Initialization Code.

Creating Methods.

Creating Properties.

Using the Class Library in an Application.

Serviced Components.

Building VB.NET Serviced Components.

Lab 5-1: An Ordering and Inventory System Made with Serviced Components.

Summary.

What's Ahead.



6. Building Web Services.

The Need for Web Services.

Standards-Based Functionality (XML and HTTP).

Separation of Data from Presentation.

Overview of Web Services.

The .asmx File.

Web Service Classes and Web Methods.

Web Service Description Language.

Web Service Wire Formats.

Using HTTP GET.

Using HTTP POST.

Using the Simple Object Access Protocol (SOAP).

Web Services Discovery.

Static Discovery.

Dynamic Discovery.

Creating a Simple Web Service.

Lab 6-1: The Palindrome Web Service.

Calling Web Services with Proxy Classes.

Creating a Client for a Web Service.

Lab 6-2: A Console Application for the Palindrome Web Service.

Managing State in Web Services.

Using Transactions in Web Services.

Making an Advanced Web Service.

Lab 6-3: An Enhanced Ordering and Inventory System.

Summary.

What's Ahead.



7. Accessing Data with ADO.NET.

Overview of Data Access on the Web.

Flat Files.

Legacy or Mainframe Data.

Proprietary Database APIs.

Standard APIs.

ADO.

ADO.NET: The Next Generation of Data-Access Technology.

ADO.NET Programming Objects and Architecture.

The DataSet Class.

The .NET Managed Data Provider.

Displaying Database Data.

The IDataReader Interface (System.Data.IDataReader).

Working with Command Parameters.

The DataGrid Control Revisited.

Displaying Data in the DataGrid Control.

Editing Data in the DataGrid Control.

Programming with the DataList and DataGrid Controls.

Lab 7-1: An Online Photo Gallery.

Working with the DataSet and DataTable Objects.

The DataSet Class Summary.

The DataTable Class Summary.

Creating DataSet and DataTable Objects.

Adding Data to a DataTable Object.

Displaying Data in a DataTable Object.

Loading and Updating DataSet Objects with the IDataAdapter Interface.

Filtering and Sorting Data with the DataView Class.

Maintaining Data Integrity with the DataRelation Class.

Using Manual Database Transactions.

Working with Typed DataSet Objects.

Lab 7-2: VS.NET and Typed DataSet Objects.

Summary.

What's Ahead.



8. Securing .NET Applications.

Windows Security 5

File/Object System Security.

User Rights, Groups, and Policies.

IIS Authentication and Authorization Security.

Anonymous Access.

BASIC Authentication.

Integrated Windows Authentication.

Digest Authentication.

Authentication by IP Address and Domain.

A Crash Course in Cryptography.

Symmetric Cryptography.

Public Key Cryptography.

Hashes and Digital Signatures.

Digital Certificates.

Implementing Data Encryption (System.Security.Cryptography).

ASP.NET Authentication Security.

The Forms-Based Authentication Provider.

The Windows Authentication Provider.

The Microsoft Passport Authentication Provider.

Summary 6



Appendix A. .NET Framework Class Library Reference Tables.


Appendix B. ADO.NET Class Library Reference Tables.


Bibliography.


Index. 0201734400T05012002

Preface

It was bound to happen sooner or later.

We've come to take for granted the Internet and all it has to offer. We can research, shop, entertain ourselves, and communicate with others worldwide without leaving our PC. Your average Web surfer does not give any second thoughts to the magic behind the scenes of these Web sites that enable us to carry out these activities, but you are a Web application developer who provides these experiences for the Web-surfing masses. For many businesses, a Web site is not just an attractive marketing tool, but a mission-critical piece of their revenue stream. Your job is to ensure the best possible user experience for the Web surfer, and, unfortunately, the time-to-market for these important Web applications shrinks with each passing day.

So, how are you, the software developer, planning to cope with this trend? Fortunately for you, Web application development has taken turns for the better in recent years. Many new tools have become available that make life easier when programming interactive Web applications.

One of these tools is a platform from Microsoft called .NET (pronounced dot-net). In short, the .NET platform is a new framework, based on industry standards, for creating Internet applications that deliver on Microsoft's promise of making information available "any time, any place and on any device." To take Internet functionality to the next level, it must be decoupled from the desktop and laptop PC. Devices like the cell phone and PDA now contain Internet connectivity, enabling mobile users the freedom to take advantage of the rich user experience of the desktop PC while "on the go." The .NET platform makes developing applications for these mobile devices easier. Plus, it eliminates the problems of connecting and sharing data across devices that would normally be incompatible, due to differences in operating systems, network protocols, or programming languages. But most important, .NET applications make computers easier to use and makes users more productive. As the Internet becomes more and more a part of our daily lives, the more approachable, productive, and responsive it needs to be. .NET is the application platform to make that happen.

Active Server Pages.NET (ASP.NET), an integral part of the .NET framework, is the key focus of this book. ASP.NET enables the developer to create dynamic web applications; much in the same way desktop applications are created. Web applications can now share the same flow and feel as desktop applications, which enables the user to do more with the PC skills they already have. For the software developer, ASP.NET provides many advantages over other web application development models, in particular the speed at which web application and services can be developed.

This book is also covers Web Services, the faceless applications that will run on Internet servers everywhere. .NET applications that you write will aggregate Web Services. These web services, located in various locations in the Internet cloud (as well as your local area network) will all work together to deliver on the promise of a rich and productive Internet experience for the user.

Why Are You Here?

By now, you may have noticed that I have referred to you, the reader, as a software developer. This book is geared for those software developers who need to deliver first-rate Web applications and Web Services as quickly as possible. The approach that I take with this book is unique: I don't expect you to be an expert in Web application development. In fact, I assume that you have little or no knowledge of how Web applications or Web Services work. I'll discuss these topics in a tutorial format, so you can follow and learn, while all the while being productive.

This book is also for students or hobbyist that want to learn about programming web applications and Web Services using the .NET platform. The text of this book is arranged in a discussion/laboratory format, so students and teachers can effectively pick and choose topics and sections that are most relevant to their curriculum.

Even though I'm assuming minimal knowledge of web programming methodologies, I am forced to set a few prerequisites. Since we are working with Web pages for a majority of this book, a working knowledge of basic HTML would be very helpful, which means you should be familiar with the common HTML tags, as well as HTML forms. You should also be familiar with URLs. And, it's a good idea to be familiar with the Windows operating system fundamentals, such as file operations (moving, copying, etc.) and navigation. We will be programming Web Services (more on this later) that will be built using Visual Basic.NET. While I don't specifically require that you have used any previous version of Visual Basic in the past, it would certainly be helpful. This book is geared toward beginner and intermediate developers alike. Ideally, you should have some programming experience with a high-level language, be it with Visual Basic, C++, COBOL, Pascal, or some other language. You should also be familiar with language concepts such as procedures, loops, conditionals, variables, and so on. All of the samples in this book will be coded in Visual Basic.NET.

In addition, exposure to relational database management system fundamentals would be beneficial in the chapters dealing with the "database-enabling" of your Web application. If you are comfortable working with tables, records, and key constraints and have basic database administration skills, you should be ready for the database sections in the book.

Focus and Goals of This Book

Why is the focus of this book on ASP.NET and the .NET platform? To put it simply, I believe the .NET platform is what will carry Internet applications to the next level. The .NET platform has set a new standard for programming ease for both browser-based applications as well as Web Services. My goal is to make you productive in the least amount of time using these technologies.

This book is a "follow up" of sorts to "Web Programming with ASP and COM," my first book. I was surprised how much ASP and ASP.NET are radically different technologies. Plus, COM+ and .NET now overshadow traditional COM. For readers of my first book, this will require a paradigm shift in thinking to understand the programming model of .NET. If you are a first-time reader, you're in luck. We approach the material as if you've never been exposed to web application programming, or ASP and COM for that matter.

Above all, my ultimate goal is to provide you with a flying start toward developing world-class Web applications easily and quickly. Active Server Pages.NET and the .NET Framework provide the best environment for this. With easy-to-understand development languages (like Visual Basic) and the code modules in the .NET Framework, developing Web applications becomes very easy.

Software and Hardware Tools Used in This Book

At the time of this writing, the Microsoft .NET platform requires Windows NT/2000/XP (any version, Professional or Server will work) for server-based applications. The final release of the .NET platform will support legacy versions of Windows (98/NT) for client applications, making the .NET platform more interoperable with older operating systems. When choosing hardware, make sure you have a computer that meets or exceeds the minimum hardware requirements for Windows 2000/XP. This should suffice for your development activities. When in doubt about your particular system configuration, just remember: it will not hurt to add more RAM or hard-drive space to your computer!

As a bare minimum, you can program for the .NET Framework using Windows 98, but with some restrictions. For example, one cannot host any web-based server applications (ASP.NET and Web Services) using Windows 98 (or Windows ME). This requires Windows NT, Windows 2000, or Windows XP. However, any other "client" .NET application can be developed and run on Windows 98 and above systems. This includes console applications, consumers/clients for Web Services, and Windows Forms applications (Windows Forms will not be covered in this book).

Development with the .NET platform on Windows requires the .NET Framework. We'll also make use of the great tools that the Visual Studio.NET environment provides. In this book, we will be developing with the Visual Basic.NET portion of the product. The examples in the book are oriented around using VS.NET as our primary development tool. If obtaining a copy of Visual Studio.NET is not feasible, you may still download the .NET Framework SDK for free from Microsoft's Web site. The .NET Framework SDK contains all the development tools needed to work with the examples in this book, but is limited as far as graphical-based development tools and it doesn't have the ease of use of VS.NET. In support for those users using the .NET Framework SDK by itself, we will provide instructions on how to compile and run many of the samples in this book using the command-line tools that ship with the .NET Framework.

Other Essential Software

There are some optional software packages that you may find useful to have around while you develop .NET and ASP.NET applications. The examples in the book will use SQL Server 7.0/2000, a powerful, scalable, and robust database management system. Chapter 7 deals with examples that interact with SQL Server, so access to SQL Server will be a requirement. Microsoft offers a trial download of SQL Server 2000 available at http://www.microsoft.com/sql.

Conventions and Styles Used in the Book

This book features many design features to help you get the most out of the information presented. The text is organized in such a way that no matter your skill level, you sure to find the information you need quickly.

This book follows a tutorial format and is geared toward the reader with little or no experience with ASP.NET and the .NET Framwork. At each chapter, an overview is presented where covered topics are listed. The overview is followed by a discussion of each item and a lab exercise(s) pertaining to the discussion. Lab exercises are very pictorial in nature. Screenshots are used to a high degree to guide you through every step of the development process.

Paragraph Headings and Text References

As you've probably noticed, paragraph headings are numbered. We number these headings to make finding relevant sections of the text easier.

Code samples may contain line markers. These are to help you reference source code being discussed in the text. Here's a sample source code listing with a line marker.

Function DoThatThingYouDo( n As Integer )
   Dim x As Integer
   For x = 1 to n
     DoIt( x )  (23)
   Next
End Function

In the text, we would provide an in-line reference to the source code line like this: (23). This allows you to quickly locate the source code we are discussing.

Helpful Stuff

Occasionally, we'll make special mention of topics that will assist you in making your development efforts easier. These are highlighted like this:

Tip: Make sure you stop and smell the roses

Warnings... Watch out!

We're also watching out for you. There are plenty of opportunities to "shoot yourself in the foot" when developing software. When we see possible danger heading your way, we'll notify you with a warning section:

WARNING: Running with scissors is not a good idea.

Tech Talk

Some topics discussed may not have direct relevance to the topic at hand, but may interest the more industrious programmer. Some folks prefer not to listen to it (like me, I enjoy simplicity) but I include it for sake of completeness. We segregate these discussions from the main text like this:

Tech Talk: Here's where a long, detailed, geeky discussion will happen. You can just skip over it if you've forgotten your pocket protector or if this sort of talk doesn't interest you.

Miscellaneous

Here are some final notes on formatting. Certain unfamiliar terms in the text will be in italic text. Menu commands (such as those in Windows and the Visual Studio.NET development environment) appear in boldface. Also note that some tables, particularly those involving the .NET Framework Class Library have been placed in an Appendix. Some of these reference tables are quite large and have been move to the Appendix for better readability of the text.

Electronic Source Code Files

When code in the text is available in electronic form, either online or on the CD-ROM, the file will be named as such: csnn-n.vb|aspx|asmx|ascx, which corresponds to the file csnn-n.ext. Code for the lab exercises are labeled as lcsn-n.vb.

Some code samples may also contain a line below the grey code block that shows how to build (compile) the program using the Visual Basic.NET command-line utility, vbc.exe. This is provided for those readers who do not have access to Visual Studio.NET and are using the .NET Framework SDK by itself.

Talk to me, baby!

I mean it! I've received quite a bit of feedback from readers of my first book, Web Programming with ASP and COM (thank you readers!) and your continued feedback is very important. I do my best to answer each e-mail personally. While I can't help you with general programming questions, I can certainly respond to any queries you have about material that relates directly with this book. So, please send me your comments, suggestions, rants, raves, and ramblings. My e-mail address is:

matt_crouch@hotmail.com

I've written the code in this book against the Release Candidate of Visual Studio.NET. While the GA (Generally Available) release of Visual Studio.NET won't be available until sometime after this writing (Microsoft is aiming for Feb 2002), I've prepared this text with the most current version of Visual Studio.NET I could get my hands on. This will ensure that you have the most accurate code at your disposal. But, expect a few changes as Microsoft hammers out the final details of the .NET Framework.



0201734400P02012002

Index

Click below to download the Index file related to this title:
Index

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020