home *** CD-ROM | disk | FTP | other *** search
- <%@ LANGUAGE = JScript %>
-
- <HTML>
- <HEAD>
- <TITLE>Intermediate VB Component</TITLE>
- </HEAD>
-
- <BODY BGCOLOR="White" topmargin="10" leftmargin="10">
-
-
- <!-- Display Header -->
-
- <font size="4" face="Arial, Helvetica">
- <b>Intermediate VB Component</b></font><br>
-
- <hr size="1" color="#000000">
-
-
- <%
- var SimpleVBComponent;
-
-
- // Create the Simple VB Component
-
- SimpleVBComponent = Server.CreateObject("IISSDK.VBIntermediate");
-
-
- // Call the HelloText method. It will transmit HTML
- // using the ASP Intrinsics. Note that the component
- // must be loaded in the MS Transaction Server
- // for the component to access the intrinsics
-
- SimpleVBComponent.HelloHTML();
- %>
- </BODY>
- </HTML>
-