%
pid=Request.Querystring("ascid")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "asc2000","",""
Set rs = Conn.Execute("SELECT * FROM abstracts WHERE id =" & pid & " ")
%>
The Astrobiology Web | Your Online Guide to the Living Universe
.
|
|
<%=rs("title")%>
Primary Author: <%=rs("author")%>
Presentation Type: <% if rs("sessions")="oral" then%>Oral Presentation<%else%>Poster Session<%end if%>
<%=rs("abstract")%>
<%=rs("links")%>
[TOP]
|
|
|
<%
rs.close
Conn.Close
set rs = nothing
set Conn = nothing
%>