home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
iis4_03.cab
/
iisnew.asp
< prev
next >
Wrap
Text File
|
1997-11-12
|
2KB
|
105 lines
<%@ LANGUAGE=VBScript %>
<% Option Explicit %>
<% Response.Expires = 0 %>
<%
Const L_NOCOOKIES_TEXT = "Your browser does not allow cookies. "
Const L_TURNONCOOKIES_TEXT = "Cookies must be enabled in order to use Internet Service Manager (HTML). Please adjust your browser settings, and "
Const L_CLICKHERE_TEXT = "click here."
%>
<html>
<head>
<title>Microsoft Internet Service Manager</title>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFCC00" vlink="#FFCC00" alink="#FFCC00"topmargin="0" leftmargin="0" style="font-family: Helv,Arial; font-size: 10pt;">
<img src="images/iisttl.gif">
<% if Session("Browser") <> "" then%>
<table cellpadding="0" >
<tr>
<td width = 190>
</td>
<td width = 400>
<form name="userform" action="default.asp">
<FONT FACE="HELV,ARIAL" SIZE = 1>
<% if Session("IsIE")then %>
<script language="JavaScript">
// Determine the version number.
var version;
var requiredVersion=2;
if (typeof(ScriptEngineMajorVersion) + ""=="undefined"){
version=1;
}
else{
version=ScriptEngineMajorVersion();
// Prompt client and navigate to download page.
if (version < requiredVersion){
}
}
</script>
<% end if %>
<P>
<FONT FACE="HELV,ARIAL" SIZE = 3>Please select your system font size:</FONT><p>
<p>
Choose <a href="javascript:SetSize('LARGE');"><b>Large</b></a> if the
text in the following box wraps.<br>
Otherwise, choose <a href="javascript:SetSize('SMALL');"><b>Small</b></a>.
<p>
<table width="110" border="1" cellpadding="3">
<tr>
<td width="110">
<FONT FACE="HELV,ARIAL" SIZE = 1>
Does this text wrap?
</FONT>
</td>
</tr>
</table>
<p>
</font>
</form>
</td>
</tr>
</table>
<% else %>
<table cellpadding="0" >
<tr>
<td width = 190>
</td>
<td width = 400>
<FONT FACE="HELV,ARIAL" SIZE = 1>
<P>
<FONT FACE="HELV,ARIAL" SIZE = 1 COLOR="RED">
<%= L_NOCOOKIES_TEXT %>
</FONT>
<P>
<%= L_TURNONCOOKIES_TEXT %><A HREF="default.asp"><%= L_CLICKHERE_TEXT %></A>
</tr>
</table>
<% end if %>
</body>
<script language="JavaScript">
function SetSize(sel){
self.location.href="default.asp?FONTSIZE=" + sel;
}
</script>
</html>