Home > Articles > Mobile Application Development & Programming > HTML5 & Web Standards

📄 Contents

  1. Introducing MyInformIT
  2. Added Value
  3. And Now, the Rest of the Story
Like this article? We recommend

Like this article? We recommend

And Now, the Rest of the Story

Enough digression. Now that we have our recordset, we make sure that it contains data, then read what's there.

26    'Populate the Product information array
27    prodInfo.MoveFirst()
28    if not prodInfo.EOF then
29      prodset(1) = prodInfo.Fields("product_name")
30      elname = prodset(1)
31      prodset(2) = prodInfo.Fields("isbn")
32      prodset(3) = prodInfo.Fields("published_date")
33    end if

We determine the product name, ISBN of the product, and its published date.

34    if Request.QueryString("element_id") <> "" then
35    'Content is at the element level
36      elID = Request.QueryString("element_id")
37      'Get element info
38      elobj.getElementDesc(prodID)
39      set elDesc = elobj.items
40      elDesc.MoveFirst()
41      while not elDesc.EOF
42       if elDesc.Fields("element_id") = elID then
43         elname = elDesc.Fields("element_name")
44       end if
45       elDesc.MoveNext()
46      wend
47    else
48    'Content is only at product level
49      elID = "NULL"
50    end if

What's this? An element_id? I've been caught again! While it's true that the product_id is all we need to uniquely specify a product, certain products go deeper than that. An article will generally have many pages. Each page has its own chunk of content, the text of that page. This is stored in a separate database table, content_elements, and is linked back to the base product information in the products table. An intermediate table, product_content, stores the product_id, and has rows for each associated element_id. Thus, when an article is selected, a join occurs to link the product_id to the element_ids that come with it. That is how we display a particular article page.

If there's an element_id on the query string, that means we're on a given page of an article. If you want to save just page three to MyInformIT, we give you that capability here. (Aren't we just the nicest bunch of folks?) We scroll through the returned recordset and match the given element_id, storing the element_name (the section title) for later.

51    'Get the user ID
52    if Request.QueryString("session_id") <> "" then
53    'Grab the session ID to get the user ID

Here is where we tie the session_id passed on the query string to the user_id (at least according to the comment above).

54      sessID = Request.QueryString("session_id")
55      set addobj = Server.CreateObject("informit.addto")
56      addobj.getUserID(sessID)
57      set userRS = addobj.items
58      userID = userRS.Fields("user_id")
59
60      if Len(userID) <= 0 _
61       or isnull(userid) then
62       addContent = -2

We retrieved a recordset from a call to the informit.addto.getUserID method. If the session_id doesn't match a user_id for some reason, we drop out of addContent() with a –2 return value.

63      else
64       ' Make sure that the user does not already have
65       ' this piece
66       ' of content in his collection. If so, give them
67       ' a choice
68       ' of whether or not to add it again
69       ret = addobj.checkContent(userID,prodID,elID)

As promised, here is where we check to see whether the content already exists in the user's MyInformIT list. The Java procedure returns 0 if the product_id (and element_id, if there) is not matched within that user_id's saved content, and 1 if the content already exists.

70       if ret = 0 then
71       'Add the content
72         ret = addobj.addContent(userID,prodID,elID)
73         if ret = 1 then
74          resp = resp & "<p>
            <font size=""-1"" color=""#FF0000"">" &
            elname &
            " - </font><font size=""-1""> has been
            successfully added to your MyInformIT
            bookshelf</font></p>" & chr(13)
75          resp = resp &
            "<p align=center>
            <form id=form1 name=form1>
            <input type='button' name='close'
            value='Close'
            onClick='window.close()'></form></p>" &
            chr(13)
76          addContent = resp

The method informit.addTo.addContent is called on line 72, passing in the user_id, product_id, and element_id. If everything worked, we return from the function, passing back the screen that you see in Figure 4.

Figure 4 You've been saved!

77         else
78          addContent = -1
79         end if

Otherwise, we return an error condition.

80       elseif ret = 1 then
81         ' Content is already there, give the user a
82         ' choice whether to
83         ' add it again
84         resp = resp & "<p align=""center"">
           <font size=""-1"" color=""#FF0000"">" &
           elname & " - </font><font size=""-1""> is
           already saved on your MyInformIT
           bookshelf</font>" & chr(13)
85         resp = resp & "<br><font size=""-1"">
           Do you wish to save it again?</font></p>" &
           chr(13)
86         resp = resp & "<p align=center>
           <form id=form1 name=form1>
           <input type='button' name='yep'
            value=' Yes' onClick='reAdd()'>&nbsp;&nbsp;
            <input type='button' name='nope'
            value=' No '
            onClick='window.close()'></form></p>" &
            chr(13)
87         addContent = resp

Finally we arrive at the reAdd condition. With my apologies for the broken-up lines, you can see on line 86 that clicking the Yes button will invoke the JavaScript reAdd() function that was mentioned a long time ago in a galaxy far, far away. Figure 5 will help with visualization.

Figure 5 What? You want to save it again?

The reAdd() function takes the input URL, derived from the window.location.href call, and tacks the text "&readd=yes" onto the query string. It closes the current pop-up window and opens another of the same size, in the same location. This takes us back to the addTo/index.asp function, but this time readd='yes' is true. Instead of calling addContent(), we call readdContent(). readdContent() does exactly the same things as addContent(), except it doesn't check for the readd flag, naturally.

88       else
89       ' Oops
90         addContent = -1
91       end if
92      end if
93    end if
94   end if
95
96 end function

The last few lines just tidy up. We now have added a piece of content to our MyInformIT selections. If you go back to the MyInformIT page, you'll see it there as big as life.

I'm guilty of being selfish by taking up so much of your time writing about adding content to MyInformIT. In the next installment, we'll take a closer look at how the lists of products are retrieved and built for a given user. Until then, stop at stop signs! Take a little extra time and enjoy life! I know that I will.

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