VBScript Sample: vbscript/general/demonative/demonative.asp
   ASP Script
   Comments or Client-side Script
   HTML and Text

<html>

<head>
<title>Call a function from a DLL</title>
</head>

<body>
  <b><font size="5" COLOR="BLUE">
<p> </p>
<p align = center>Call Functions from DLLs through JNI </p>

<hr>
</font><font size="2" COLOR="green">

<p> <br>
<br>
<% 
   
' Create a instance of DemoNative class
   set DemoNative =Server.CreateObject("DemoNative")

   
' Load DemoNative Dll
   DemoNative.loadlib("DemoNative")

   
' Call nativeTime native method
   Response.Write DemoNative.nativeTime()

%>

<hr>
</p>
</font>
</body>
</html>


Copyright © 1998-2002, Halcyon Software Inc. All rights reserved.