| |
 |
|
<%
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 %>
|
|
|
Lord of the Rings - Helm's Deep
Drawn in pencil, then scanned into the computer and painted in Photoshop. I love Lord of the Rings: Two Towers. I wanted to depict the heat of battle with the Uruk-hai. I even posed myself
as reference for the main Uruk-hai being slashed in the stomach
by Aragorn.
|
|
|
<% else %>
<%
sql = "select * from fantasy where gal_id = " & clng(request.querystring("gal_id"))
rsa.Open sql, conna
%>
|
<% end if %>
|
|
 |
|