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

  1. <%@ LANGUAGE = JScript %>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <TITLE>Simple 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>Simple VB Component</b></font><br>
  15.       
  16.         <hr size="1" color="#000000">
  17.  
  18.  
  19.         <%
  20.             // Create the Simple VB Component
  21.             SimpleVBComponent = Server.CreateObject("IISSDK.VBSimple");
  22.  
  23.             // Call the helloText method and print the returned string
  24.             Response.Write(SimpleVBComponent.helloText());
  25.         %>
  26.  
  27.  
  28.     </BODY>
  29. </HTML>
  30.