| |
 |
|
<%
application("appa")="driver={Microsoft ACCESS Driver (*.mdb)};dbq=" & Server.MapPath("access_db\netcommander.mdb")
set conna = Server.CreateObject("ADODB.Connection")
conna.open application("appa")
set rsa = Server.CreateObject("ADODB.Recordset")
rsa.CursorType = 2 'Set the cursor type we are using so we can navigate through the recordset
rsa.LockType = 3 'Set the lock type so that the record is locked by ADO when it is updated
%>
<% if request.querystring("gal_id") = "" or request.querystring("gal_id") = "1" then %>
|
|
|
Sin Metal Sirens #1
Sin Metal #1 was an x-rated parody of a female 007
spy who worked in space. I got to 3 issues
before it was cancelled. I tried to
continue the story of the characters
in the little 5 page x-rated Eros Anthology titles
but the 5 page format required a resolution to each story.
In the end it was a challenge to have a
witty ending. I’m planning to collect the series and
make it into a downloadable PDF people can buy off this website.
|
|
|
<% else %>
<%
sql = "select * from sinmetal where gal_id = " & clng(request.querystring("gal_id"))
rsa.Open sql, conna
%>
|
<% end if %>
|
|
 |
|