- Enter
the personal word or number you selected when you registered for
the conference
- Click
"Find It"
Can't
remember your personal word or number? Email registration@VSACCA.org
and we will send it to you.
Please
allow one week for your confirmation information to be posted. You
may print this page as a copy of your receipt of payment.
<% if request.querystring("confirm") = "true" then
DSNtemp="Driver={MySQL};Server=sqlc1d.megasqlservers.com;Database=reg_naaconference_org;UID=naaconfere986884;PWD=naareg"
set db = server.createobject("adodb.connection")
db.open DSNtemp
strword = request.form("keyword")
Set rsProducts = server.createobject("adodb.recordset")
sSQL = "Select * From naadb WHERE confirm = '" & strword & "'"
rsProducts.open sSQL, db
if rsProducts.eof then
response.write "No confirmation with that keyword was found."
else
%>
Your 2007
Conference Confirmation
|
First
Name
|
City
|
Days
Attending
|
Total
Fee
|
Confirmation
Number
|
<%
while not rsProducts.eof
%>
| <%=rsProducts("fname")%> |
<%=rsProducts("city")%> |
<%=rsProducts("days")%> |
<%=rsProducts("total")%> |
<%=rsProducts("confirmcode")%> |
<%
rsProducts.movenext
wend
%>
<%
end if
rsProducts.close
set rsProducts = nothing
db.close
set db = nothing
end if
%>
|