home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
ins.cab
/
nnredir.asp
< prev
next >
Wrap
Text File
|
1997-10-12
|
1KB
|
53 lines
<% Response.Expires = 0 %>
<%
REM LOCALIZATION
L_PAGETITLE_TEXT = "Microsoft Internet Service Manager"
REM END LOCALIZATION
%>
<% REM Get variables %>
<% REM svr = Server name %>
<% REM pg = Page to be loaded in main frame %>
<% REM lgt = Logging type (to determine loading of Logging page) %>
<% REM bg = Background color for blank page (black, grey) %>
<% svr = Request("svr") %>
<% pg = Request("pg") %>
<% lgt = Request("lgt") %>
<% bg = Request("bg") %>
<HTML>
<HEAD>
<TITLE><% = L_PAGETITLE_TEXT %></TITLE>
</HEAD>
<% if (bg = "black") then %>
<BODY BGCOLOR="#000000">
<% else %>
<BODY BGCOLOR="#CCCCCC">
<% end if %>
<% REM If page is specified, redirect; otherwise display blank page of specified color %>
<% if (pg <> "") then %>
<SCRIPT LANGUAGE="javascript">
self.location = "<% = pg %>.asp?svr=<% = svr %>";
</SCRIPT>
<% end if %>
<FORM NAME="hiddenform">
<INPUT TYPE="hidden" NAME="helpfilename" VALUE="help/nnsrvh.htm">
</FORM>
</BODY>
</HTML>