home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
Components_JScript.asp
< prev
next >
Wrap
Text File
|
1998-04-27
|
651b
|
33 lines
<%@ LANGUAGE = JScript %>
<HTML>
<HEAD>
<TITLE>Using Components</TITLE>
</HEAD>
<BODY bgcolor="white" topmargin="10" leftmargin="10">
<!-- Display Header -->
<font size="4" face="Arial, Helvetica">
<b>Using Components with ASP</b></font><br>
<hr size="1" color="#000000">
This script use the Tools component
that comes with IIS to generate a random number.
<br>
<br>
<%
// Instantiate Component on the Server
example = Server.CreateObject("MSWC.Tools");
%>
Random Number = <% = example.Random() %>
</BODY>
</HTML>