home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_06.cab / iisctr1.asp < prev    next >
Encoding:
Text File  |  1997-08-26  |  3.1 KB  |  87 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
  2. <html><head><title>Security for the Intranet</title>
  3.  
  4.  
  5. <SCRIPT LANGUAGE="JavaScript">
  6.     TempString = navigator.appVersion
  7.     if (navigator.appName == "Microsoft Internet Explorer"){    
  8. // Check to see if browser is Microsoft
  9.         if (TempString.indexOf ("4.") >= 0){
  10. // Check to see if it is IE 4
  11.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  12.         }
  13.         else {
  14.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  15.         }
  16.     }
  17.     else if (navigator.appName == "Netscape") {                        
  18. // Check to see if browser is Netscape
  19.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  20.     }
  21.     else
  22.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  23. </script>
  24.  
  25.  
  26. <META NAME="ROBOTS" CONTENT="NOINDEX"></head>
  27. <body bgcolor="#FFFFFF" text="#000000"><font face="Verdana, Arial, Helvetica">
  28.  
  29.  
  30. <table border="0" cellpadding="5" WIDTH="100%">
  31. <tr>
  32. <td colspan="2"><h1><a name="iisinaction">Security for the Intranet</a></h1></td>
  33. </tr>
  34. <tr>
  35. <td valign="top">
  36.  
  37. <DL>
  38. <DT><strong>Goal</strong></DT>
  39. <DD>To provide a Web page that members of your airline's Frequent Flyers club can use to see how many points they have accumulated, find out what trips they might be able to buy with those points, and place reservations for those trips.</DD>
  40. <DT><strong>Components</strong></DT>
  41. <DD>Windows NT Server 4.0; Internet Information Server (IIS) 4.0; Active Server pages (ASP); ADO; Microsoft SQL Server; Internet Explorer 3.02</DD>
  42. <DT><strong>Environment</strong></DT>
  43. <DD>Intranet, secured; Windows NT network</DD>
  44. </DL>
  45.     
  46. </td>
  47.  
  48.  
  49. <% MachType = Request.ServerVariables("HTTP_UA-CPU")
  50. If MachType = "Alpha" then 
  51.    MachPath = "../mm/NSRedrct.htm"
  52. ElseIf InStr(Request.ServerVariables("HTTP_USER-AGENT"), "MSIE") Then
  53.    MachPath = "../mm/iisctr1m.asp" 
  54. Else
  55.         MachPath = "iimmnscp.htm"
  56. End If %>
  57.  
  58. <td width="180" rowspan=3 nowrap background="gradient.gif" valign="top">
  59. <center>
  60. <a href="<%= MachPath%>"><img src="iimm.gif" border=0 alt="Introductory video "></a><p>Click for a NetShow demonstration of some of the tasks mentioned in this scenario.
  61. </center><br>
  62. </td>
  63.  
  64. </tr>
  65. </table>
  66.  
  67. <h2><A NAME="H2_37671418">Basic Process</a></h2>
  68.  
  69. <ol>
  70. <li>Establish Windows NT Challenge Response authentication for an application; </li>
  71. <li>Create the group to whom you want to grant access.</li>
  72. <li>Assign the Log on Locally priviledge to this group.</li>
  73. <li>Change permissions to only the group created above (remove the group "Everyone").</li>
  74. </ol>
  75.  
  76.  
  77. <h2><A NAME="H2_37671735">Result</a></h2>
  78.  
  79. <p>When a member of this group attempts to use this application, they are able to - without having to type in a password. When a user that is not a member of this group attempts to use this application, they receive an error message.</p>
  80.  
  81.  
  82. <hr class="iis" size="1">
  83. <p align="center"><em><a href="/iishelp/common/colegal.htm">© 1997 by Microsoft Corporation. All rights reserved.</a></em></p>
  84.  
  85. </font>
  86. </body>
  87. </html>