home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
Components_VBScript.asp
< prev
next >
Wrap
Text File
|
1998-04-27
|
699b
|
36 lines
<%@ LANGUAGE = VBScript %>
<% Option Explicit %>
<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 uses the Tools component that
comes with IIS to generate a random number.
<br>
<br>
<%
Dim example
' Instantiate Component on the Server
Set example = Server.CreateObject("MSWC.Tools")
%>
Random Number = <% = example.Random() %>
</BODY>
</HTML>