<% Response.Write Request.form("txtCategory") Const adOpenStatic = 3 Const adLockReadOnly = 1 Const adCmdText = &H0001 ' Our own constants DIm PS ' The size of our pages. ' Declare our variables... always good practice! Dim strURL ' The URL of this page so the form will work ' no matter what this file is named. Dim cnnSearch ' ADO connection Dim rstSearch ' ADO recordset Dim strDBPath ' path to our Access database (*.mdb) file Dim strSQL ' The SQL Query we build on the fly Dim strSearch ' The text being looked for Dim iPageCurrent ' The page we're currently on Dim iPageCount ' Number of pages of records Dim iRecordCount ' Count of the records returned Dim I ' Standard looping variable Dim Cat Dim pg ' Retreive the URL of this page from Server Variables strURL = Request.ServerVariables("URL") ' Retreive the term being searched for. I'm doing it on ' the QS since that allows people to bookmark results. ' You could just as easily have used the form collection. Dim RecPage strSearch = Request.QueryString("search") strSearch = Replace(strSearch, "'", "''") Cat=Request.QueryString("txtCategory") RecPage=Request.QueryString("txtPage") ' Retrieve page to show or default to the first If Request.QueryString("page") = "" Then iPageCurrent = 1 Else iPageCurrent = CInt(Request.QueryString("page")) End If %>
  SEARCH
Select a news category
Articles per page
Search articles :
<% If strSearch <> "" Then Dim PAGE_SIZE: if not Request.QueryString("txtPage") = "" Then PAGE_SIZE=cint(RecPage) Else PAGE_SIZE=10 End if ' MapPath of virtual database file path to a physical path. ' If you want you could hard code a physical path here. 'strDBPath = Server.MapPath("../database/voiceofthecape.mdb") strDBPath = "Driver={MySQL ODBC 3.51 Driver}; Server=localhost; Database=voiceofthecape; UID=; PWD=; Option=3" ' Create an ADO Connection to connect to the sample database. ' We're using OLE DB but you could just as easily use ODBC or a DSN. Set cnnSearch = Server.CreateObject("ADODB.Connection") ' This line is for the Access sample database: cnnSearch.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & ";" strSQL = "SELECT * FROM News_Article WHERE catid="& Cat &" and Header like '%" & Replace(strSearch, "'", "''") & "%' order by date desc" Response.write RecPage Set rstSearch = Server.CreateObject("ADODB.Recordset") rstSearch.PageSize=PAGE_SIZE rstSearch.CacheSize=PAGE_SIZE if not trim(Cat)="" then rstSearch.Open strSQL, cnnSearch, adOpenStatic, adLockReadOnly, adCmdText iRecordCount = rstSearch.RecordCount iPageCount = rstSearch.PageCount If iRecordCount = 0 Then ' Display no records error. %>

No records found. Please try again.

<% Else ' Move to the page we need to show. rstSearch.AbsolutePage = iPageCurrent ' Show a quick status line letting people know where they are: %>
<%= iRecordCount %> Records Found. Displaying page <%= iPageCurrent %> of <%= iPageCount %>:
<% ' Display a table of the data in the recordset. We loop through the ' recordset displaying the fields from the table and using MoveNext ' to increment to the next record. We stop when we reach EOF. ' For fun I'm combining some fields and showwing you can do more then ' just spit out the data in the form it is in in the table. %> <% Do While Not rstSearch.EOF And rstSearch.AbsolutePage = iPageCurrent If i mod 2 = 0 Then strclass="#FCFBBA" Else strclass="#F5FCF7" End If %> <% i=i+1 rstSearch.MoveNext Loop %>
<%= rstSearch.Fields("header").Value %>  <%=rstSearch("date")%>
<%=left(rstSearch("Article"),250)%>..... " style="color:red">read more...

<% ' Now we need to show our navigation links: ' Show "previous" and "next" page links which pass the page to ' view our search parameter. You could also use form buttons ' but I find this looks better. If iPageCurrent > 1 Then %> [<< Prev] <% End If ' You can also show page numbers: For I = 1 To iPageCount If I = iPageCurrent Then %> <%= I %> <% Else %> <%=I%> <% End If Next 'I If iPageCurrent < iPageCount Then %> [Next >>] <% End If %>

<% End If ' Close our recordset and connection and dispose of the objects rstSearch.Close Set rstSearch = Nothing cnnSearch.Close Set cnnSearch = Nothing End If End If %>