Hi there

This is my first post. Sorry for the lack of detail but I'll do my best to explain the issues I am having.

My clients site was working fine last week. But for some strange reason its not now.

The site was done using:

----------------------------------------
Windows XP Pro
Dreamweaver CS3
ASP - VB Script
MS Access 2003 db
Runs in Windows 2003 server
----------------------------------------

I have added a recordset that requested an 'Entered Value' from a table in the database.

For example content_id = 28 returns the page content for the About Us page.

Viewing this page returns:

----------------------------------------
error '80004005'
/about-us-test.asp, line 19
----------------------------------------

The code for the top part of the page is:

----------------------------------------
1= <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
2= <!--#include file="Connections/dsn_s_tech.asp" -->
3= <%
4= Dim rs_news
5= Dim rs_news_cmd
6= Dim rs_news_numRows
7=
8= Set rs_news_cmd = Server.CreateObject ("ADODB.Command")
9= rs_news_cmd.ActiveConnection = MM_dsn_s_tech_STRING
10= rs_news_cmd.CommandText = "SELECT * FROM news ORDER BY news_id DESC"
11= rs_news_cmd.Prepared = true
12=
13= Set rs_news = rs_news_cmd.Execute
14= rs_news_numRows = 0
15= %>
16= <%
17= Dim rs_content__MMColParam
18= rs_content__MMColParam = "28"
19= If (Request("MM_EmptyValue") <> "") Then
20= rs_content__MMColParam = Request("MM_EmptyValue")
21= End If
22= %>
----------------------------------------

If I remove the 'entered value' from the Recordset and set the Filter to None it works fine. Check this page to see:

http://www.s-tech.co.uk/about-us-test-filter-none.asp

Please can someone help, urgently. Thanks in advance for any thoughts on this matter.

Kind regards
Jon M