Perhaps you could show us the code you are using to display the newsletter as it would help us to give you an answer.
There are ways of not showing recordsets, such as:
Code:
DB_CONNECTIONSTRING = "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & Server.MapPath("/db/database.mdb")
Set objConn = Server.CreateObject("ADODB.Connection")
objconn.open DB_CONNECTIONSTRING
set objrs=Server.CreateObject("ADODB.Recordset")
SQL="SELECT * FROM newsletter ORDER BY sectionid asc"
set objrs=objconn.execute(SQL)
if not objrs.BOF and not objrs.EOF then
i=1 'set i to be a variable so we can use section numbers such as section1, section2 etc...
do while not objrs.EOF
if objrs("section"&i) <> "" then
response.write ("section"&i) &"<br />" & vbcrlf
end if
i=i+1
objrs.movenext
loop
objrs.close
end if 'bof and eof
set objrs=nothing
objconn.close : set objconn=nothing
To be honest, unless you give us more detail on your specific problem then it's going to be hard to help.
Bookmarks