% 'NO EDITING REQUIRED TO SET UP THIS PAGE ========================================================================================= 'Ensure page is not cached on the client... Response.Expires = -1 Response.ExpiresAbsolute = (Now() - 1) Response.AddHeader "pragma","no-cache" Response.AddHeader "cache-control","private" Response.CacheControl = "no-cache" nItemRef = Request.QueryString("ItemRef") 'Connect to database... Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "Driver={Microsoft Access Driver (*.mdb)}; Dbq=C:\Websites\Rolf\Data\Resources\RHarris.mdb; uid=; pw=" Set objRS = Server.CreateObject("ADODB.Recordset") : Set objRS.ActiveConnection = objConn strSQL = "SELECT * FROM [Products] WHERE [ID] = " & nItemRef & ";" objRS.Open strSQL, objConn If objRS("Online") = False Then nStock = 0 Else nStock = CLng(objRS("Stock")) End If nPrice = objRS("Price") 'Close off objects... Set objRS = Nothing : objConn.Close: Set objConn = Nothing %>

design by bvoxy ltd - rolfharris@bvoxy.com |
© Copyright Rolf Harris Enterprises Ltd 2008 |
ROLF has written and illustrated his new book TIE ME KANGAROO DOWN, SPORT, a stunning picture book with his own brand new artwork.
It comes complete with an audio and video DVD of Rolf performing his famous 1960’s hit and brings it to life again for those who fondly remember the classic song, while also introducing it to new generations to enjoy. It combines both art and music in one book and is a true celebration of Rolf Harris.
The book is published by Scholastic UK and is available now from all good book stores...

| Books: | back to all books | shop | view cart / check out |
Price |
Qty |
Add |
<%=FormatCurrency(nPrice)%> |