ASP Source Code
ASP File: vbscript/general/demonative/demonative.asp
ASP Script
Comments
HTML and Text
<html>
<head>
<title>Call Function from 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>