home *** CD-ROM | disk | FTP | other *** search
- <%@ LANGUAGE = JScript %>
-
- <HTML>
- <HEAD>
- <TITLE>Simple VB Component</TITLE>
- </HEAD>
-
- <BODY BGCOLOR="White" topmargin="10" leftmargin="10">
-
-
- <!-- Display Header -->
-
- <font size="4" face="Arial, Helvetica">
- <b>Simple VB Component</b></font><br>
-
- <hr size="1" color="#000000">
-
-
- <%
- // Create the Simple VB Component
- SimpleVBComponent = Server.CreateObject("IISSDK.VBSimple");
-
- // Call the helloText method and print the returned string
- Response.Write(SimpleVBComponent.helloText());
- %>
-
-
- </BODY>
- </HTML>
-