|
Hello World component
Overview
This is used in our building WSC components tutorial
. This quite simply displays a message box on the screen.
Sample Code
<%
Dim greeting
'create an instance of the HelloWorld object
Set greeting = Server.CreateObject("HelloWorld.SayHello")
'display a greeting
greeting.SayHello
%>
Download
Right Click and save as
HelloWorld.WSC
|