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

  1. <%@ LANGUAGE = JScript %>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <TITLE>Intermediate VB 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>Intermediate VB Component</b></font><br>
  15.       
  16.         <hr size="1" color="#000000">
  17.  
  18.  
  19.         <%
  20.             var SimpleVBComponent;
  21.  
  22.  
  23.             // Create the Simple VB Component
  24.  
  25.             SimpleVBComponent = Server.CreateObject("IISSDK.VBIntermediate");
  26.  
  27.  
  28.             // Call the HelloText method.  It will transmit HTML
  29.             // using the ASP Intrinsics.  Note that the component
  30.             // must be loaded in the MS Transaction Server
  31.             // for the component to access the intrinsics
  32.             
  33.             SimpleVBComponent.HelloHTML();
  34.         %>
  35.     </BODY>
  36. </HTML>
  37.