"
do until stli.EOF
if prefield<>stli("Field") then
response.write "
" else response.write "
" & webtext & "" end if if stli("MapLocURL")>"" then response.write "
- Map Location - " response.write "
" if stli("ImageURL")>"" then response.write "
"
response.write "Description: " & stli("description")
if stli("Timeframe")>"" then response.write "
Timeframe: " & stli("Timeframe") if stli("Funding")>"" then response.write "
Funding: " & stli("Funding") & "
" end if stli.MoveNext loop set stli=nothing set comdb=nothing %>
" & stli("Field") & "
"
prefield=stli("Field")
precat=0
end if
if stli("cat")>"" and precat=0 and ProjId=0 then
response.write "Research Higher Degree Projects:
"
precat=1
end if
if ProjId=0 then
response.write "" & stli("Title")
if stli("Cat")>"" then response.write " - " & stli("Cat")
response.write "" else response.write "
" & stli("Title") & "
"
PersTitle=" Principal: "
if stli("cat")>"" then PersTitle = stli("cat") & " thesis by "
response.write PersTitle
principal= stli("Principal")
if stli("orphaned")=True then
response.write principal & " (fomerly with CSER)"
else
SQLQuery = "Select PersId from people where name='" & principal &"'"
set peoprec=comdb.Execute(SQLQuery)
PersId=peoprec("PersId")
response.write "" & principal & ""
SQLQuery = "Select * from people, persproj where PersId=PrsId and PrjId=" & ProjId & " and PersId<>" & PersId & " order by name"
set peoprec=comdb.Execute(SQLQuery)
c=0
do until peoprec.eof
if c=0 then response.write " and others: "
response.write " " & peoprec("name") & ""
c=c+1
peoprec.movenext
loop
end if
if stli("externs")>"" then response.write " " & stli("externs")
if stli("weblink")>"" then
webtext=stli("weblink")
if stli("WebLText")>"" then webtext=stli("WebLText")
response.write "" & webtext & "" end if if stli("MapLocURL")>"" then response.write "
- Map Location - " response.write "
" if stli("ImageURL")>"" then response.write "
Timeframe: " & stli("Timeframe") if stli("Funding")>"" then response.write "
Funding: " & stli("Funding") & "
" end if stli.MoveNext loop set stli=nothing set comdb=nothing %>