admin
base
com
developer
drivers
ds
enduser
inetcore
inetsrv
iis
admin
browseinfo
config
exe
iisrearc
img
inc
last
lkrhash
qfetools
setup
staxinc
svcs
admex
afsvcloc
cmp
asp
asp51
aspcmp
aspidl
asptxn
checkin
gsmoke
global.asa
gsmoke.txt
sapp1.asp
sobjtag.asp
sobjtag2.asp
ssess3.asp
smoke
checkin.txt
d2smoke.bat
denclnt.bat
denver.exe
dosmoke.bat
pass.bat
scr.txt
smoke.bat
smoke.txt
devsmpl
doc
easp
makevers
mco
misc
perfmon
sso
tools
webdav
dirs
readme.txt
dbgext
ftp
gopher
iiscrmap
iismap
iisrtl
iisrtl2
iissuba
infocomm
irtl
kisrtl
loadbal
mdadmin
mibs
nntp
nsepm
restart
smtp
staxcore
svcloc
w3
wam
wp
bugs.txt
dirs
ui
utils
bldzip.pl
clean.bat
coffbase.txt
dirs
guids.txt
iisntw.chm
inetrel.cmd
internet.mk
k2ver.pl
make128.cmd
makefile
makefile.chi
mkdev.cmd
mksample.cmd
mkwebcat.cmd
place.inc
place51.inc
placefil.txt
placefil5.txt
project.mk
sdkdrop.bat
update.cmd
wcrel.cmd
intlwb
msmq
published
query
dirs
project.mk
loc
mergedcomponents
multimedia
net
printscan
public
published
sdktools
shell
termsrv
tools
windows
dirs
makefil0
52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
<% On Error Resume Next %>
|
|
<% if (Request.ServerVariables("QUERY_STRING") = "") then %>
|
|
<!-- Phase 1: The first condition will be executed only for the Verification suite
|
|
This part of the code sends the FORM and VALIDDATA tags so that client knows
|
|
what to do
|
|
-->
|
|
|
|
<HTML>
|
|
<HEAD>
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
<!-- This sets up the query string that the client will send later
|
|
-->
|
|
|
|
<FORM METHOD="GET" ACTION="http://localhost/smoke/ssess3.asp?test/">
|
|
<input type=submit value="Submit Form">
|
|
</FORM>
|
|
|
|
<!-- This tells the client what to expect as the valid data
|
|
-->
|
|
|
|
<VALIDDATA>
|
|
<P><A HREF="?url=http://www.microsoft.com&image=/advworks/multimedia/images/ad_1.gif"><IMG SRC="/advworks/multimedia/images/ad_1.gif" ALT="Astro Mt. Bike Company" WIDTH=440 HEIGHT=60 BORDER=1></A></P>
|
|
</VALIDDATA>
|
|
|
|
</BODY>
|
|
</HTML>
|
|
|
|
<% else %>
|
|
|
|
<!-- Phase 2: This is the part that really tests Denali
|
|
-->
|
|
|
|
<HTML>
|
|
<HEAD>
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
<!-- This starts sending the results that the client is expecting
|
|
-->
|
|
|
|
<OUTPUT>
|
|
<P><% =AD1.GetAdvertisement("/smoke/adrot.txt") %></P>
|
|
</OUTPUT>
|
|
|
|
</BODY>
|
|
</HTML>
|
|
|
|
<% end if %>
|
|
|