Home > Store

ASP.NET Unleashed, 2nd Edition

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

ASP.NET Unleashed, 2nd Edition

Book

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

Description

  • Copyright 2003
  • Edition: 2nd
  • Book
  • ISBN-10: 0-672-32542-X
  • ISBN-13: 978-0-672-32542-7

The second edition of ASP.NET Unleashed further strengthens a book that is already one of the most highly regarded ASP.NET books available. Stephen covers virtually all relevant features of ASP.NET. In addition, all samples will now be presented in VB .NET and C#.

Throughout the more than 1,400 pages readers are shown how to develop state-of-the-art Web applications using Microsoft's powerful ASP.NET. It progresses through Web Forms basics, advanced page development, ADO.NET and XML, securing Web applications, XML Web Services, leveraging the .NET Framework, building custom controls and powerful sample applications. This is a resource that will be referenced over and over.

Downloads

Downloads

All the code on the book companion CD-ROM in one convenient file for download - 1,487 kb -- cdcode.zip

Sample Content

Online Sample Chapters

Performing Form Validation with Validation Controls

Performing Form Validation with Validation Controls

Table of Contents



Introduction.

I. WORKING WITH ASP.NET WEB FORMS.

1. Building ASP.NET Pages.

ASP.NET and the .NET Framework.

The .NET Framework Class Library. Understanding Namespaces. Standard ASP.NET Namespaces. .NET Framework-Compatible Languages.

Introducing ASP.NET Controls.

A Simple ASP.NET Page. Benefits of ASP.NET Controls. Overview of ASP.NET Controls.

Adding Application Logic to an ASP.NET Page.

Handling Control Events. Handling Page Events.

The Structure of an ASP.NET Page.

Directives. Code Declaration Blocks. ASP.NET Controls. Code Render Blocks. Server-side Comments. Server-side Include Directives. Literal Text and HTML Tags.

Summary.

2. Building Forms with Web Server Controls.

Building Smart Forms.

Using Label Controls. Using the TextBox Control. Using Button Controls. Using the RadioButton and RadioButtonList Controls. Using the CheckBox and CheckBoxList Controls. Using the DropDownList Control. Using the ListBox Control.

Controlling Page Navigation.

Submitting a Form to a Different Page. Using the Redirect() Method. Working with the HyperLink Control.

Applying Formatting to Controls.

Base Web Control Properties. Applying Styles to Web Controls.

Summary.

3. Performing Form Validation with Validation Controls.

Using Client-side Validation.

Configuring Client-side Validation. Enabling and Disabling Client-side Validation.

Requiring Fields: The RequiredFieldValidator Control.

Comparing to an Initial Value.

Validating Expressions: The RegularExpressionValidator Control.

Validating E-Mail Addresses. Validating Usernames and Passwords. Validating Phone Numbers. Validating Web Addresses. Checking for Entry Length. Validating ZIP Codes.

Comparing Values: The CompareValidator Control.

Comparing the Value of One Control to the Value of Another. Comparing the Value of a Control to a Fixed Value. Performing a Data Type Check.

Checking for a Range of Values: The RangeValidator Control. Summarizing Errors: The ValidationSummary Control.

Displaying Pop-Up Error Messages.

Performing Custom Validation: The CustomValidator Control.

Validating Credit Card Numbers.

Disabling Validation. Summary.

4. Advanced Control Programming.

Working with View State.

Disabling View State. Adding Values to View State.

Displaying and Hiding Content.

Using the Visible and Enabled Properties. Using the Panel Control. Simulating Multipage Forms. Adding Controls Programmatically. Adding Controls to a Page. The PlaceHolder Control. Dynamically Generating Forms. Dynamically Generating List Items.

Using Rich Controls.

Displaying Interactive Calendars with the Calendar Control. Rendering Calendar Days. Displaying Banner Advertisements with the AdRotator Control. Accepting File Uploads with the HTMLInputFile Control.

Summary.

II. ADVANCED ASP.NET PAGE DEVELOPMENT.

5. Creating Custom Controls with User Controls.

Including Standard Content with User Controls. Exposing Properties and Methods in User Controls. Exposing Web Controls in User Controls. Exposing Events in User Controls. Loading User Controls Programmatically. Summary.

6. Separating Code from Presentation.

Creating Business Components.

Creating a Simple Business Component.

Creating Multitiered Web Applications. Using Code-Behind.

How Code-Behind Really Works. Compiling Code-Behind Files. Inheriting Multiple Pages from a Code-Behind File. Compiling a Complete ASP.NET Page.

Summary.

7. Targeting Mobile Devices with Mobile Controls.

Introduction to Mobile Devices. Using Mobile Device Software Simulators. Using ASP.NET Mobile Controls.

Creating Mobile Forms. Dynamically Activating a Mobile Form. Displaying Text. Displaying Lists. Creating Text Boxes. Validating User Input. Displaying Images. Placing Phone Calls. Displaying Advertisements with Mobile Controls. Displaying Calendars with Mobile Controls.

Creating Cross-Device-Compatible Mobile Pages.

Detecting Mobile Capabilities. Choosing Devices with DeviceSpecific. Using Form Template Sets.

Summary.

8. Additional Samples and Controls.

Using the Microsoft Internet Explorer WebControls.

Using the TreeView Control. Using the Toolbar Control. Using the TabStrip Control.

Using the ASP.NET Starter Kits.

The ASP.NET Community Starter Kit. The ASP.NET Reports Starter Kit. The ASP.NET Time Tracker Starter Kit. The ASP.NET Commerce Starter Kit. The ASP.NET Portal Starter Kit.

Summary.

III. Working with ADO.NET.

9. Introduction to ADO.NET.

An Overview of ADO.NET. Performing Common Database Tasks.

Opening a Database Connection. Retrieving Records from a Database Table. Using Parameters with Queries. Adding Records to a Database. Updating Database Records. Deleting Database Records.

Improving Database Performance.

Using SQL Stored Procedures. Retrieving Return Values and Output Parameters. Executing Complex Stored Procedures. Improving Performance with Connection Pooling.

Advanced Database Topics.

Executing Database Commands in a Transaction. Specifying a Command Behavior. Retrieving Table Schema Information.

Summary.

10. Binding Data to Web Controls.

Overview of Data Binding. Binding a Server Control to a Data Source.

Binding to the Repeater Control. Using Templates. View State and the Repeater Control. Binding to the DropDownList Control. Binding to the RadioButtonList Control. Binding to the CheckBoxList Control. Binding to a ListBox Control. Binding to Other Controls.

Creating Master/Detail Forms.

Creating Single-Page Master/Detail Forms. Creating Multipage Master/Detail Forms.

Data Binding without Data Binding Expressions. Summary.

11. Using the DataList and DataGrid Controls.

Overview of the DataList and DataGrid Controls.

Understanding Event Bubbling. Using Templates. Using the DataKeys Collection.

Using the DataList Control.

Displaying Data in a DataList. Using Templates with a DataList. Using Styles with a DataList. Creating Multiple Columns in a DataList. Capturing Events Raised in a DataList Control. Selecting Items in a DataList Control. Using the DataKeys Collection with the DataList Control. Creating a Master/Detail Form with a DataList Control. Editing Items in a DataList Control.

Using the DataGrid Control.

Creating Columns in a DataGrid Control. Using Styles with a DataGrid. Sorting Columns in a DataGrid Control. Paging Through Records in a DataGrid. Selecting Rows in a DataGrid Control. Editing Items in a DataGrid Control. Editing Items in a DataGrid Control with Templates.

Summary.

12. Working with DataSets.

Understanding DataSets.

Elements of DataSets. Adding DataTables to a DataSet. Binding Controls to a DataSet.

Understanding DataTables.

Creating DataTables Programmatically. Setting DataTable Properties. Setting Column Properties in a DataTable. Computing Column Values in a DataTable. Defining Relationships Between DataTables. Retrieving DataTable Schema Information. Updating Records in a DataTable.

Understanding DataViews.

Filtering Rows in a DataView. Sorting Rows in a DataView. Finding Rows in a DataView.

Using DataSets with ASP.NET Pages.

Caching DataSets. Displaying Cached Data. Filtering Cached Data. Finding a Row in a Cached DataSet.

Summary.

13. Working with XML.

Overview of the XML Classes. Using XML with DataSets.

Reading an XML Document into a DataSet. Using a Schema with ReadXml. Writing an XML Document from a DataSet. Using XMLDataDocuments with DataSets.

Transforming XML with XSL Stylesheets. Using the ASP.NET Xml Control. Using the XslTransform Class. Using Strongly Typed DataSets. Summary.

14. Using ADO.NET to Create a Search Page.

Using SQL Server Full-Text Search.

Configuring the Full-Text Search Service. Performing Free Text Queries with Database Data. Performing Boolean Queries with Database Data. Using the CONTAINSTABLE Function. Uploading and Indexing Binary Documents.

Using the Microsoft Indexing Service.

Configuring the Microsoft Indexing Service. Connecting to Microsoft Indexing Service. Retrieving Document Properties. Performing Free Text Queries with File System Data. Performing Boolean Queries with File System Data. Performing Queries with Document Properties.

Summary.

IV. WORKING WITH ASP.NET APPLICATIONS.

15. Creating ASP.NET Applications.

Overview of ASP.NET Applications. Using Application State.

Understanding Application State and Synchronization. Using the Global.asax File. Understanding Context and Using the Global.asax File. Handling the Application Start and Init Events. Handling the Application_BeginRequest Event.

Using the Web.Config File.

Examining the Configuration Sections. Modifying Configuration Settings. Setting the Configuration Location. Locking Configuration Settings. Adding Custom Configuration Information.

Using HTTP Handlers and Modules.

Working with HTTP Handlers. Working with HTTP Modules. Creating the WhosOn Application.

Summary.

16. Tracking User Sessions.

Using Browser Cookies.

How Cookies Work. Creating and Reading Session Cookies. Creating and Reading Persistent Cookies. Setting Cookie Properties. Examining Limitations of Cookies.

Using Session State.

Adding Items to Session State. Removing Items from Session State. Starting a User Session. Ending a User Session. Handling Session Events. Storing Session State in Process. Storing Session State in a Windows Service. Storing Session State in a Database Table. Disabling Session State.

Using Cookieless Sessions.

Enabling Cookieless Sessions. Examining Limitations of Cookieless Sessions.

Summary.

17. Caching ASP.NET Applications.

Using Page Output Caching.

Varying Cache Contents by Parameter. Varying Cache Contents by Header. Varying the Cache Contents by a Custom String. Setting the Cache Location. Working with the HttpCachePolicy Class.

Using Page Fragment Caching.

Varying Page Fragment Caching by Parameter. Examining the Limitations of Page Fragment Caching.

Using Page Data Caching.

Adding Items to the Cache. Adding Cache File Dependencies. Adding Cache Trigger Dependencies. Adding Cache Key Dependencies. Creating an Absolute Expiration Policy. Creating a Sliding Expiration Policy. Setting Cache Item Priorities. Creating a Cache Callback Method.

Summary.

18. Application Tracing and Error Handling.

Responding to Errors.

Viewing Error Information. Page-Level Error Handling. Application-Level Error Handling.

Tracing and Monitoring Your Application.

Tracing Page Execution. Monitoring the ASP.NET Process. Retrieving Process Information.

Logging Events.

Using Performance Counters.

Using the Debugger.

Attaching the Debugger. Creating Breakpoints. Creating Watches. Stepping Through an ASP.NET Page.

Summary.

V. SECURING ASP.NET APPLICATIONS.

19. Using Forms-Based Authentication.

Working with Forms Authentication.

Enabling Forms Authentication. Configuring Forms Authentication. Configuring Forms Authorization. Retrieving User Information. Creating a Sign-Out Page. Authenticating Users with the Web.Config File. Authenticating Users with an XML File. Authenticating Users with a Database Table. Implementing Roles-based Authentication. Creating a Custom Authentication Ticket. Using Forms Authentication and Web Farms.

Working with Passport Authentication.

Enabling Passport Authentication. Retrieving User Information.

Summary.

20. Using Windows-Based Authentication.

Working with Windows Authentication.

Configuring Internet Information Server Security. Configuring Microsoft Windows Security. Configuring Windows Authentication. Configuring Windows Authorization. Configuring Custom Roles. Retrieving User Information.

Impersonating User Accounts.

Executing ASP.NET Pages under a User Account.

Setting Security Policies. Summary.

21. Encrypting Data over the Network.

Using the Secure Sockets Layer.

Encryption. Authentication. Data Integrity. How Secure Is SSL?

Configuring Your Server to Use SSL.

Generating a Certificate Request File. Applying for a Server Certificate. Installing Your Server Certificate.

Using SSL in ASP.NET Pages. Using .NET Encryption Classes.

Using Hash Algorithms. Using Symmetric Encryption Algorithms. Using Asymmetric Encryption.

Summary.

VI. BUILDING ASP.NET WEB SERVICES.

22. Creating an XML Web Service.

Overview of XML Web Services.

XML Web Services Facilitate Communication. XML Web Services Enable Aggregation.

Creating a Simple XML Web Service.

Setting WebMethod Attributes. Setting WebService Attributes. Precompiling an XML Web Service.

Testing an XML Web Service from a Browser.

Invoking an XML Web Service with HTTP-Get. Invoking an XML Web Service with HTTP-Post. Invoking an XML Web Service with SOAP.

Accessing an XML Web Service Through a Proxy Class.

Generating an XML Web Service Proxy Class. Using an XML Web Service Proxy Class. Working with the Web Services Description Language Tool. Setting Proxy Class Properties.

Transmitting Complex Data in an XML Web Service.

XML Web Services and Arrays. XML Web Services and Classes. Web Services and DataSets. Web Services and Binary Files.

Examining XML Web Service and Web Site Interaction.

XML Web Services and Application State. XML Web Services and Session State.

Summary.

23. Advanced XML Web Services.

Using the WebService Behavior.

Examining Limitations of the WebService Behavior. Creating a Simple Page with a WebService Behavior. Using a WebService Behavior Callback Function. Catching Errors in a WebService Behavior. Using a WebService Behavior to Perform Partial Page Updates. Using the WebService Behavior to Retrieve Database Data.

Securing an XML Web Service.

Overview of the Secure XML Web Service. Creating the Database Tables. Creating the Login() Method. Retrieving the Custom SOAP Header. Authenticating the Session Key. Caching the Session Keys. Building the Secure XML Web Service. Accessing the Secure Web Service.

Using HTML Pattern Matching.

Creating the WSDL Document. Specifying the Regular Expression Pattern. Creating a Simple HTML Pattern Matching Service. Using Input Parameters with HTML Pattern Matching. Building the Six Degrees Web Service.

Summary.

VII. LEVERAGING THE .NET FRAMEWORK.

24. Working with Collections and Strings.

Working with Collections.

Using the ArrayList Collection. Using the HashTable Collection.

Working with Strings.

Formatting Strings. Using String Methods and Properties. Using the StringBuilder Class. Appending Strings to a StringBuilder.

Working with Regular Expressions.

Using Regular Expression Classes. Examining Elements of a Regular Expression. Matching Single Characters. Matching Special Characters. Matching Alternative Sequences of Characters. Matching with Quantifiers. Identifying Regular Expressions and Greed. Capturing and Backreferences. Using Replacement Patterns. Setting Regular Expression Options.

Summary.

25. Working with the File System.

Security and the File System. Using Files and Directories.

Creating and Reading Text Files. Creating and Reading Binary Files. Displaying the Contents of a Directory. Retrieving Path Information.

Using Serialization.

Using Binary Serialization. Using XML Serialization.

Summary.

26. Sending Email and Accessing the Network.

Sending Email from an ASP.NET Page.

The Microsoft SMTP Service. Sending a Simple Email Message. Using the MailMessage Class. Adding Attachments to an Email Message. Sending HTML Email.

Using Message Queuing.

Configuring Microsoft Message Queuing. Working with Message Queues. Sending Messages to a Queue. Retrieving Messages from a Queue. Displaying the Body of a Message. Sending and Receiving Complex Messages.

Accessing Other Web Sites with the HTTP Protocol.

Using the WebClient Class. Using the HttpWebRequest Class. Resolving Domain Names.

Summary.

27. Creating Graphics On-the-Fly with GDI+.

Building Simple Images. Drawing Objects with GDI+.

Creating a Bitmap. Working with the Graphics Object. Setting Graphics Quality. Using Colors. Using Brushes. Using Pens. Setting Pen Cap Styles. Drawing a Rectangle. Drawing a Line. Drawing an Ellipse. Drawing a Curve.

Drawing a String of Text. Building Sample GDI+ Applications.

Creating an ASP.NET Paint Application. Creating a Simple Chart Application.

Summary.

VIII. BUILDING CUSTOM ASP.NET CONTROLS.

28. Developing Custom Controls.

Creating a Simple Control. Using HtmlTextWriter. Adding Properties and Methods to Controls.

Using Property Accessor Functions. Using Methods with Controls.

Parsing Inner Content. Adding Child Controls to a Control.

Creating a Custom Control Builder.

Examining Custom Controls and Events.

Adding Custom Events to a Control.

Participating in Postbacks.

Handling Postback Events.

Creating Composite Controls.

Handling Events in a Composite Control.

Inheriting from Existing Controls. Accessing the Current Context. Debugging Controls. Summary.

29. Advanced Control Development.

Adding Templates to a Control.

Creating Multiple Instances of a Template. Adding Multiple Templates to a Control.

Creating DataBound Controls.

Implementing Different Data Sources. Implementing a Simple DataBound Control. Using DataBound Controls and Templates. Using DataBound Controls and State. Binding a Custom Control to a DataSet.

Using Custom Controls and Web Services.

Creating the Featured Products Web Service. Creating the Featured Products Custom Control. Displaying the Featured Products Control.

Summary.

IX. SAMPLE ASP.NET APPLICATIONS.

30. Creating a Job Site.

Installing the Job Site. Creating the Home Page. Authenticating Users. Creating Vanity URLs. Listing and Updating Jobs. Creating the Jobs XML Web Service. Summary.

31. Creating an Online Store.

Overview of the ASP.NET Unleashed Sample Store. Installing the ASP.NET Unleashed Sample Store. Building the Navigation System. Caching the Product Data. Building the Shopping Cart. Dynamically Loading Product Templates.

Using the LoadControl Method. The Code-Behind Product Template.

Summary.

X. APPENDIXES.

Appendix A. Migrating from ASP to ASP.NET.

ASP.NET Pages End with the Extension .aspx. Option Explicit Is On by Default. No More Variants. Use Parentheses When Passing Parameters to Subroutines and Methods. Functions and Subroutines Must Be Declared in <Script> Tags. Parameters Are Passed by Value. Forms Should Post Back to the Same Page. Only One Server-Side Form per Page. Don't Use Set and Let When Working with Objects. Apartment-Threaded Components Are Not Supported. No Nonindexed Default Properties. ASP.NET Pages Can Contain Only a Single Language. Differences in Request, Request.Form, and Request.QueryString.

Appendix B. HTML Control Reference.
Appendix C. Web Control Reference.
Index.

Updates

CD-ROM fixes

The book companion CD-ROM is missing C# code from Chapter 28 - 71 kb - Chapter28CSharpCode.zip

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