Home > Articles

Let's Build an E-Portal!

Now we know the rough principles on which to base our e-portal design. So how do we create the objects, pages, and database designed above?

Web Pages

I tend to use VB-based ASP for developing front-end pages, and I'll use that here for demonstration purposes. JavaScript-based ASP pages work just as well, but in an example like this it can be confusing to work out which aspects happen on the client and which on the server; in my examples, JavaScript happens on the client at all times. Again, all the functionality shown here can also be written as JSPs or CGI programs.

Personalization

To make it easier to understand how these pages work, I've used parameters passed to the ASP pages and read in using Request.QueryString. However, in a real-life situation, I would advise using a POST to send information between web pages and then use Request.Form("fontface"). It's possible to use Request.Item("fontface") rather than Request.QueryString. But this allows parameters to be passed to your program by the user, and may therefore present a security risk—although it makes debugging easier!

Listing 1 shows how I've implemented simple font personalization within the e-portal:

Listing 1—Personalizing the Font

<%
fontface=Request.QueryString("fontface")
fontsize=Request.QueryString("fontsize")

if fontface="Arial" and fontsize=8 then
%>

<style type="text/css">

<!--
.bodycopy { font-family: Arial, Verdana, Helvetica, sans-serif;
 font-size: 8pt; font-style: normal; font-weight: normal}
.bodyboldcopy { font-family: Arial, Verdana, Helvetica, sans-serif;
 font-size: 8pt; font-style: normal; font-weight: bold}
-->
</style>
<%
else
  if fontface="Arial" and fontsize=10 then
%>
:
:

Every bit of text on the e-portal is surrounded by a <span> tag:

<span class="bodycopy">This is the text</span>

so that the above code changes all the text on the page depending on the fontface and fontsize parameter values passed to the page. You can see this by clicking the following two links:

As this e-portal is simply a demo, it currently works with only two font faces—Arial and Verdana. For each font, you can select font size 8 or 10.

Similarly, the bgcolor parameter determines whether the user sees the page in a garish yellow (!!) or in gray.

The default settings for the e-portal can be reset by clicking the Reset Settings link.

Personalization settings need to be held in a persistent form. My e-portal uses a Microsoft Access database for this purpose. When the user is first created (during the registration process), the default settings are entered into the database against the user's user ID, by calling the User object's Create() method. This, in turn, carries out the database insert statement in Listing 2:

Listing 2—Entering the Default Settings for the User

set rst3 = Server.CreateObject("ADODB.Recordset")
sqlstring = "Insert into intranetsettings " & _
"(discussions,sales,presentations,projects," & _
"techdocs,news,personal,generalinfo,Headingsoff," & _
"fontface,fontsize,bgcolour, UserId) " & _
" values (1,1,1,1,1,1,1,1,0,'Arial',10,'y','" & userid & "')"
resultset.open sqlstring, con,3,3

NOTE

The author's setting is bgcolour (notice the u); your version may be bgcolor.

The Reset Settings link resets the personalization settings held for the user within the database, using the object User and calling its method, User.ResetSettings().

The Select Settings link allows the user to change his or her personalization settings. By clicking the available options, the user can indicate whether he or she wants to see various content sections on the e-portal—Discussion Groups, Project Documents, Presentations, News, and so on. Note that the Search section is mandatory, so users don't have the option of removing that section.

Now take a look at the page—click Select Settings within the e-portal page.

As discussed earlier, the user also has the option of selecting the background color for the e-portal (yellow and gray are the only options in this limited demo), the font color, and the font face. After clicking Save Settings, the user returns to the e-portal main page, which implements any settings changes. This is enabled by the JavaScript code in Listing 3, which calls the main e-portal page, passing it the changed values for all the options.

Listing 3—Implementing the User's Custom Settings

function returntomainpage() {
top.location.href="intranetframeset.asp?" & _
"&userid=<%=Request.QueryString("userid")%>&" & _
"password= <%=Request.QueryString("Password")%>" & _
"&fontface=" & document.settings.fontface.value" & _
" "&fontsize=" & document.settings.fontsize.value & _
"&bgcolor=" & document.settings.bgcolor.value & _
 "&sales=" + document.settings.sales.value & _
 "&discussions=" & document.settings.discussions.value & _
 "&projects=" + document.settings.projects.value & _
 "&presentations=" + document.settings.presentations.value & _
 "&personal=" + document.settings.personal.value & _
 "&general=" + document.settings.general.value & _
 "&news=" + document.settings.news.value & _
 "&techdocs=" + document.settings.techdocs.value
}

The demo e-portal also allows the user to personalize using another method; by clicking the X (Close) button in the upper-right corner of some of the sections, the user can remove the sections from view.

Try it now, so that you can see how it works—go to the e-portal and close the Discussions section.

Remember that all sections except the Search section can be removed. This is facilitated by the JavaScript code in Listing 4, which creates a URL containing the new options selected after the removal of a section.

Listing 4—Creating a URL with the New Settings

url="/intranet/intranet.asp?";
url=url + "rId=&password=&userid=&ui=&sno=";
if (section == "discuss") { url=url + "&discussions=0"; }
if (section == "sales") { url=url + "&sales=0"; }
:

Thus, when intranet.asp is called with discussions set to 0, it doesn't display that section.

Using code similar to that above, it's also possible to open a new window containing just one section by clicking the interlinked boxes that appear at the upper-right corner of each configurable section within the portal. The difference is setting discussions to 1 and all other sections to 0, so that only the Discussions section is shown in the new window.

Incorporating Content Sources

To incorporate content from other sources, I've used iframe tags. Note that this currently works only in Internet Explorer, although there are ways of mimicking an iframe tag in Netscape. (See Jennifer Niederst's Web Design in a Nutshell [O'Reilly, 1998], available on Safari.)

In the main view of the e-portal, I've incorporated an HTML news ticker from the BBC news web site by using the following code:

<iframe height="30" marginwidth="0" width="315" scrolling="no"

src="http://news.bbc.co.uk/ticker/ticker.252.stm"></iframe>

I used a similar technique to incorporate my links.asp page, although I passed it some parameters (using the Request.QueryString values) to ensure that the color and fonts match the ones used in the main e-portal:

<iframe height="30" marginwidth="0" width="315" scrolling="no"
src=" links.asp?bgcolor=<%=Request.QueryString("bgcolor")%>
&fontface=<%=Request.QueryString("fontface)%>
&fontsize=Request.QueryString("fontsize")%>"></iframe>

In a similar way, the whole of Microsoft's home page is incorporated into a scrollable iframe in the Supplier View e-portal page—see this by clicking Supplier View in the top frame.

Email/Search Integration

If you click the Email link in the top frame, you'll get straight into my email box with easy.com. This is enabled simply by sending the correct parameters to their code, as follows:

<a href='http://mail.easy.com/easygroup/login/loginaction.asp?
loginname=<%=Request.QueryString("userid")%>
&password= <%=Request.QueryString("password")%>
&loginpassword= <%=Request.QueryString("password")%>' target="email">

Similarly, the search facilities are integrations of the Altavista search engine, using their URLs and passing appropriate parameters, as shown in Listing 5.

Listing 5—Integrating the Search Engine

<FORM NAME="formuk"
ACTION="http://uk.altavista.com/q?kl=XX&what=uk&search.x=41&search.y=16" METHOD=GET>
<span class="bodycopy">
<b>UK Web Search</b></span>
<SCRIPT Language="Javascript">
    document.write("<INPUT NAME='q' VALUE='' SIZE=32>");
</SCRIPT>
</form>

HTML-Only Feedback Form

The feedback form (click on Feedback in the top frame) is just like an ordinary HTML form, but its action sends an email message to me containing the values in all the controls on the field, with the subject INFOREQUEST. The action is incorporated like this:

<form name="mailform"
action=mailto:michelle.johnston@firebirdservices.com?SUBJECT=INFOREQUEST method="post"
encType="text/plain">

XML People List

In the Supplier View, the supplier has a contact list in the middle column. This is constructed from XML generated directly from a database with an XSL stylesheet applied to it. Listing 6 shows the XML file.

Listing 6—Displaying the Contact List

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="peopletransform.xsl"?>

<PEOPLE>
<PERSON person_id="mishj" sex="F">
  <person_name>
    <given_name>Michelle</given_name>
    <surname>Johnston</surname>
  </person_name>
  <company>Firebird Services Ltd</company>
  <country>UK</country>
  <contact_details>
    <email>michelle.Johnston@firebirdservices.com</email>
    <phone>208-426-1062</phone>
    <phone>796-033-7101</phone>
    <fax></fax>
    <mobile>796-033-7101</mobile>
  </contact_details>
</PERSON>
<PERSON person_id="fredb" sex="m">
  <person_name>
    <given_name>Fred</given_name>
    <surname>Bloggs</surname>
  </person_name>
  <company>Bloggs Incorporated</company>
  <country>UK</country>
  <contact_details>
    <email>fred.bloggs@bloggs.com</email>
    <phone>208-927-3202</phone>
    <fax></fax>
    <mobile>790-011-9810</mobile>
  </contact_details>
</PERSON>
<PERSON person_id="johnd" sex="m">
  <person_name>
    <given_name>John</given_name>
    <surname>Doe</surname>
  </person_name>
  <company>Doe International</company>
  <country>US</country>
  <contact_details>
    <email>john.doe@doe.com</email>
    <phone>770-446-1666</phone>
    <fax></fax>
    <mobile>668-900-8080</mobile>
  </contact_details>
</PERSON>
</PEOPLE>

Listing 7 shows the stylesheet applied to it.

Listing 7—XSL Stylesheet for Use with the Contact List

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
 <html>
 <body bgcolor="#eeeeee">
  <font face="arial" Size="3">People</font>
  <table border="1">
  <tr bgcolor="ffdd00">
   <th align="left"><font face="arial" Size="2">Name</font></th>
   <th align="left"><font face="arial" Size="2">Contact Info</font></th>
  </tr>
  <xsl:for-each select="PEOPLE/PERSON">
  <tr>
   <td><font face="arial" Size="1">
     <xsl:value-of select="person_name"/>
     </font>
   </td>
   <td><font face="arial" Size="1">
     <xsl:value-of select="contact_details/phone"/>
     </font>
     <br></br>
     <font face="arial" Size="1">
     <xsl:value-of select="contact_details/mobile"/></font>
     <br></br>
     <font face="arial" Size="1">
     <xsl:value-of select="contact_details/email"/></font>
   </td>
  </tr>
  </xsl:for-each>
  </table>
 </body>
 </html>
</xsl:template>
</xsl:stylesheet>

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