home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / VB_Simple_VBScript.asp < prev    next >
Encoding:
Text File  |  1997-08-20  |  720 b   |  33 lines

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