Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A Logon Screen For MS Exchange 2000 Outlook Web Access

Installation and Configuration

A Logon Screen For MS Exchange 2000 Outlook Web Access

by  globalstrata  Posted    (Edited  )
The first thing to do is to decide what to call the page, and where to put it. In this example the page is
called index.asp and it is going to be saved in the root directory of the Default Web Site, which is
normally C:\Inetpub\wwwroot.

NOTE: logo.gif is the logo for your company which in this sample is saved in the same directory as the web page.

1. Start Notepad from your computerÆs Start -> Programs -> Accessories menu

2. Type the following:

<html>
<% mailbox = Request("mailbox")

If mailbox <> "" Then
Response.Redirect "/Exchange/" & mailbox

Else %>
<form action='index.asp'>
<img src='logo.gif'><br>
<h1>Outlook Web Access</h1>
Mailbox Name:<br>
<input name='mailbox'><br>
<input type='submit'>
</form>

<%End If%>

</html>

3. Select Save Asà and save it to the C:\Inetpub\wwwroot as index.asp

Gladys I. Rodriguez
GlobalStrata Solutions Inc.
http://www.globalstrata.com
[img http://www.globalstrata.com/smileys/smile4.gif]
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top