When you use the Web-to-Host Wizard to create a launch
page, the Wizard actually creates a new launch page folder that contains
several files. The Wizard uses the files located in the \template folder as a template for creating the new pages.
The benefit to this is that you can customize the template
so that all launch pages created by the Wizard will have the customized
look.
For example, you can use this feature to include your company
logo on all of the launch pages.
It is not necessary to have
a lot of experience with HTML coding to do this.
- On the web server, navigate to the site and template folder
that you want to change. For example:
C:\Inetpub\wwwroot\MySite\template
- Make a copy of the launch_x.htm file
in case you must go back to the original file.
The launch_x.htm and launch_j.htm files are the templates for all of the web pages that are created
by the Web-to-Host Wizard. Refer to ____ for more information.
- Open the launch_x.htm file in a text
editor.
The blue text in the following code places the BlueZone
logo on the
launch_x.htm page.
<tr>
<td width="25"> </td>
<td><a href="http://www.bluezonesoftware.com" target="_blank">
<img src="../images/bz_logo_90.png" width="90" height="107" border="0"
alt="BlueZone Software"></a></td>
</tr>
- Replace www.bluezonesoftware.com with your company's URL.
- Replace bz_logo_90.png with the name of your graphic file.
- Copy the graphic file into the \images folder.
- If you know the exact height and width of your graphic
in pixels, replace the height and width values with the correct values.
If you do not know the exact height and width, delete the width="90" and height="107"; they are not mandatory in HTML.
Note: The size of your logo graphic does not have to match the
BlueZone logo exactly. The HTML table stretches to conform to the
size of your graphic file. It is good practice, but not mandatory,
to specify the height and width of the graphic in the HTML code.
- Replace BlueZone
Software with your company name.
- Save and close the file.
- Create a launch folder with one session and start the page.
- Check to see that the launch page looks as you expected.
- If you have Netscape users, or if you use any other non-ActiveX
supported browsers, also modify the launch_j.htm file. You can use copy and paste to do this.