Web Page

Web Pages in netFORUM CMS are a collection of one or more Page Details. The Page itself is really just a container for Page Details.

Managing Data

Pages have their own top-level attributes that can be accessed and edited by clicking the corresponding pencil icon from the Pages panel.

Key attributes include:

<meta name="keywords" content="Member Directory" />

Editing a Web Page

To edit a Web page, complete the following steps:

  1. Open the CMS module.
  2. Click the Web Page group item to view the list of available actions.
  3. Use the Find or List feature to locate the Web page you wish to edit.
  4. Click the Goto icon next to the name of the Web page you wish to edit.

    This will open the Edit - Website Page page.

  5. Expand the page details child form.
  6. Click the Goto icon next to the specific page details you wish to edit.

    This will open the Edit - Website Page Detail page.

    You can edit the following attributes of the Web page:

  7. Click the Save button to save your edits.

Viewing Changes to the Web Page

The log child form provides an easy way to view changes that have been made to the Web page.  Expanding the log child form will display the following information:

Note: The use of HTMLEncode allows for the HTML tags to be displayed in the log child form without being executed.

Uses

Suppress Headers

To suppress the header on a web page (i.e., override the site default panes), either:

Printer Friendly Page

As stated above, an eWeb page will be displayed in a printer friendly format if the following is added to the querystring:

&printerfriendly=yes

For example, a printer friendly hyperlink could be created with the following HTML:

<A href="/EWEB/DynamicPage.aspx?Site=client_site&WebKey=00000000-0000-0000-0000-0000000000&printerfriendly=yes">Printer Friendly </A>

URL Patterns

If you need to hyperlink to a page, use the combination of site and WebCode in the URL querystring.

Incorrect (do not use &amp;):

https://members.zzz.org/eweb/DynamicPage.aspx?site=ZZZ&amp;WebCode=IndDirectory

Correct:

https://members.zzz.org/eweb/DynamicPage.aspx?site=ZZZ&WebCode=IndDirectory

While use of & may not be technically correct, it is required when the query string includes a column name from the event registrant table, for example the reg_evt_key & reg_evt_key=... Internet Explorer parses the ampersand reg_evt_key to the copyright symbol_evt_key. Firefox does not have this issue. (CArnold)