home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / CPP_Simple_JScript.asp < prev    next >
Encoding:
Text File  |  1997-09-04  |  652 b   |  31 lines

  1. <%@ LANGUAGE = JScript %>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <TITLE>C++ Simple Component</TITLE>
  6.     </HEAD>
  7.  
  8.     <BODY BGCOLOR="White" topmargin="10" leftmargin="10">
  9.  
  10.  
  11.         <!-- Display Header -->
  12.  
  13.         <font size="4" face="Arial, Helvetica">
  14.         <b>C++ Simple Component</b></font><br>
  15.       
  16.         <hr size="1" color="#000000">
  17.  
  18.  
  19.          <%
  20.                var SimpleATLObject;
  21.  
  22.                // Create the Simple ATL Component
  23.                SimpleATLObject = Server.CreateObject("IISSDK.ATLSimp.1");
  24.  
  25.                // Call the helloText method and print the returned string
  26.                Response.Write( SimpleATLObject.helloText() );
  27.         %>
  28.  
  29.     </BODY>
  30. </HTML>
  31.