Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Creating a welcome page will require an html document to be added in Assert Manager, and some configuration in Assert Web Viewer.

  1. Create an html document for the language of choice. If several languages are used, create several html documents.
  2. When referring to images or css files in the html document, ensure to refer to these documents using this syntax:
    <link rel='stylesheet' type='text/css' href='Content?fileName=support.css' media='screen'>
    <img class="imgsize50" style="vertical-align:midlle" width="400px" src="Content?fileName='support.jpg'">
  3. Start Assert Manager and open the document repository.
  4. Create a new document and add the html file to the document.
  5. Ensure to give the document the following properties
    1. Avoid giving the welcome page a name unless you want the end user to be able to search for it.
    2. An Identity that can be referred to in the Web Viewers profile.config. E.g. use "firstsignin".
    3. Ensure to set the mode "IncludeInPublish"
  6. Open profile.config and add the below settings
    <WelcomePageEnabled>true</WelcomePageEnabled>
    <WelcomePageDocument identity="firstsignin"/>

  7. Create a folder "Content" under your Documents folder in the site's file area on the editor server Manager Server and add the images and css files manually to this content folder.

...