home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
HelloWorld_test.asp
< prev
next >
Wrap
Text File
|
1998-04-27
|
560b
|
28 lines
<%@ LANGUAGE = VBScript %>
<% Option Explicit %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>Java Component Samples: HelloWorld</TITLE>
</HEAD>
<BODY>
Calling a method of a Java component from ASP:<P>
<%
Dim Obj
' Create the Java component
Set Obj = Server.CreateObject("IISSample.HelloWorld")
' Call the method and print the returned string
Response.Write Obj.sayHello
%>
</BODY>
</HTML>