| |
 |
|
<%
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 %>
|
|
|
LITTLE NAUGHTY FAERIE
This is one of the first paintings I drew directly in the
computer with my Cintiq Wacom Tablet. I didn’t plan it, it
was very spontaneous. The reference for the faerie is this
beautiful model named Veronika. I thought it would be
funny to depict this nature’s child in a very unladylike pose.
This is one of my favorite paintings to date and it was
created with Corel Painter.
|
|
|
<% else %>
<%
sql = "select * from new where gal_id = " & clng(request.querystring("gal_id"))
rsa.Open sql, conna
%>
|
<% end if %>
|
|
 |
|