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

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
  2. <html><head><title>Creating a Customer Service Application </title>
  3.  
  4. <SCRIPT LANGUAGE="JavaScript">
  5.     TempString = navigator.appVersion
  6.     if (navigator.appName == "Microsoft Internet Explorer"){    
  7. // Check to see if browser is Microsoft
  8.         if (TempString.indexOf ("4.") >= 0){
  9. // Check to see if it is IE 4
  10.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  11.         }
  12.         else {
  13.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  14.         }
  15.     }
  16.     else if (navigator.appName == "Netscape") {                        
  17. // Check to see if browser is Netscape
  18.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  19.     }
  20.     else
  21.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  22. </script>
  23.  
  24.  
  25. <META NAME="ROBOTS" CONTENT="NOINDEX"></head>
  26. <body bgcolor="#FFFFFF" text="#000000"><font face="Verdana, Arial, Helvetica">
  27.  
  28.  
  29.  
  30. <table border="0" cellpadding="5" width="100%">
  31. <tr>
  32. <td colspan="2"><h1><a name="writingtemplates">Creating a Customer Service Application </a></h1>
  33. </td>
  34. </tr>
  35.  
  36. <tr>
  37. <td valign="top">
  38. <DL>
  39. <DT><strong>Goal</strong></DT>
  40. <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>
  41. <DT><strong>Components</strong></DT>
  42. <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>
  43. <DT><strong>Environment</strong></DT>
  44. <DD>Internet, secured</DD>
  45. </DL>
  46.     
  47. </td>
  48.  
  49.  
  50.  
  51. <% MachType = Request.ServerVariables("HTTP_UA-CPU")
  52. If MachType = "Alpha" then 
  53.    MachPath = "../mm/NSRedrct.htm"
  54. ElseIf InStr(Request.ServerVariables("HTTP_USER-AGENT"), "MSIE") Then
  55.    MachPath = "../mm/iiscpb2m.asp" 
  56. Else
  57.         MachPath = "iimmnscp.htm"
  58. End If %>
  59.  
  60. <td width="180" rowspan="3" nowrap background="gradient.gif" valign="top">
  61. <center>
  62. <a href="<%= MachPath%>"><img src="iimm.gif" border="0" alt="Creating a Customer Service Application"></a><p>Click for a NetShow demonstration of some of the tasks mentioned in this scenario.
  63. </center><br>
  64. </td>
  65. </tr>
  66. </table>
  67.  
  68. <h2><a name="basicprocess">Basic Process</a></h2>
  69.  
  70. <ol>
  71. <li>Use Visual Basic 5.0 to create a Membership component.</li>
  72. <li>Use the MTS explorer to register your component and make it transactional.</li>
  73. <li>Use Visual Interdev to create the Active Server pages that accept information from your customers and complete your application.</li>
  74. </ol>
  75.  
  76. <h2><a name="results">Result</a></h2>
  77.  
  78. <p>An application that responds dynamically to customer preferences.</p>
  79.  
  80.  
  81. <hr class="iis" size="1"><p align=center><em><a href="../../../common/colegal.htm">© 1997 by Microsoft Corporation. All rights reserved.</a></em></p>
  82.  
  83. </font>
  84. </body>
  85. </html>