admin
base
com
developer
drivers
ds
enduser
inetcore
inetsrv
iis
admin
browseinfo
config
exe
iisrearc
img
admsamp
aspjava
common
custerr
help
htmla
htmlraid
psdksamp
scripts
sdksamp
wwwroot
iissamp
hp
tms
casual
layout.css
layout.inc
setup.inc
gunmetal
journal
looseleaf
mechanical
bullet.gif
default.asp
file.gif
global.asa
guestbk.asp
myfiles.asp
signbook.asp
sub.inc
theme.inc
themes.inc
nts_ntw
default.htm
dirs
extcomp.ini
iisperf.pmc
inetstp.hlp
logtemp.sql
inc
last
lkrhash
qfetools
setup
staxinc
svcs
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
41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
<%
|
|
If myinfo.Theme = "casual" Then
|
|
' $Date: 11/24/97 11:59a $
|
|
' $ModTime: $
|
|
' $Revision: 1 $
|
|
' $Workfile: layout.inc $
|
|
' casual
|
|
DIM z
|
|
'Khaki colored cell for introduction
|
|
response.write "<table width=100% border=0 cellpadding=20 cellspacing=0>"_
|
|
& "<tr><td width='65%' bgcolor=#ddddcc valign=top>"_
|
|
& "<H2 class=black>" & ThmSalutation() & "</H2><BR>"_
|
|
& "<H5 class=black>" & ThmDate() & "<BR>"_
|
|
& ThmTime() & "</H5></TD>"
|
|
'Blue colored cell for contact information
|
|
response.write "<td width=35% bgcolor=#003871 valign=top>"
|
|
If myinfo.Name <> "" OR myinfo.Email <> "" OR myinfo.faxphone <> "" OR myinfo.Department <>"" Then
|
|
response.write "<H5 class=white>" & thmName() & "<BR>" & thmDept() & "<BR>"_
|
|
& thmAddr() & "<BR>" & thmPhone() & "<BR>" & thmFax() & "<BR>" & thmEmail() & "</H5>"
|
|
End If
|
|
response.write "</td></tr>"_
|
|
& "<tr><td width=65% valign=top BGColor='#FFFFFF'>"
|
|
For z = 1 to 4
|
|
response.write Heading(z) & "<P>"
|
|
Next
|
|
response.write "</td><td rowspan=2 width=35% valign=top BGColor='#FFFFFF' BACKGROUND='/iissamples/homepage/themes/casual/line.gif'>"
|
|
If myinfo.Guestbook <> "" OR myinfo.Messages <> "" Then
|
|
response.write "<H5 class=black>While you are here...</FONT><BR>"_
|
|
& thmGuest() & "<BR>" & thmDrop() & "<BR>"
|
|
End If
|
|
call file_check
|
|
If myinfo.intURL <> "" Then
|
|
response.write "<H5 class=black>My favorite links:</H5><BR>"
|
|
call urlArray
|
|
End If
|
|
response.write "</td></tr><tr><td Align=left BGColor='#FFFFFF'>"
|
|
call IE_Logo
|
|
response.write "</td></tr></table>"
|
|
End If
|
|
%>
|