Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP Page Not displaying all Record

Status
Not open for further replies.

lcky

Programmer
Sep 29, 2005
30
GB
Hi
I am running windows Xp Pro with IIS server locally.

I have ASP Page to display record from Access 2003 database.

This is my script

<%@ Language=VBScript %>
<%
Option Explicit
Response.expires = 0
Dim objDBConn, objRS, strQuery, strWhere
Dim strConnection, strOrderBy
Dim myPostcode, myNumberOfRoom, myPropertyType, myCategory

Set objDBConn = Server.CreateObject("ADODB.Connection")
strConnection = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("../vme.mdb") & ";DefaultDir=" & Server.MapPath(".") & ";DriverId=25;FILE=MS Access;MaxBufferSize=512;PageTimeout=5"
objDBConn.Open strConnection

Set objRS = Server.CreateObject("ADODB.Recordset")
Set objRS.ActiveConnection = objDBConn

strQuery = "Select * from tblProperty "

objRS.Open strQuery

While Not objRS.EOF
Response.Write "<tr>"
Response.Write "<td align='center'>" & objRS("Location") & "</td>"
Response.Write "<td align='center'>" & objRS("Postcode") & "</td>"
Response.Write "<td align='center'>" & objRS("NumberOfRooms") & "</td>"
Response.Write "<td align='center'>" & objRS("Price") & "</td>"
Response.Write "<td align='center'>" & objRS("status") & "</td>"
Response.Write "<td align='center'><img src=../photos/" & objRS("Photo1") & " name="" width='100' height='80' > </td>"
Response.Write "</tr>"
Response.Write "<br>" & vbCrLf
objRS.MoveNext
Wend
%>


I only have 5 records.

But for some reason when test this page through internet explorer browser. my ASP page is only displaying three records.

Out of this three records, only two record display jpg file(ThumpsNail) and third record only display text fields data, but no jpg file, instead displaying graphic information ie ( <img src=../photos/pic51.jpg name=" width='100' height='80' > )

I am lost here.

Please could you help me.

many thank

 
I notice your code
Code:
Response.Write "<td align='center'><img src=../photos/" & objRS("Photo1") & " name="" width='100' height='80' > </td>"
should be
Code:
Response.Write "<td align=" & """" & "center" & """" & "><img src=" & """" & "../photos/"  & "objRS(Photo1)" & """" & " width=" & """" & "100" & """" & " height=" & """" & "80" & """" & "></td>"
 
I forgot in my testing that the "objRS(Photo1)" should be objRS("Photo1")
I would also on the above code change the single quotes to double quotes by using the """"
Hope this helps
 
Change this line to include the following:
Code:
Response.Write "<td align='center'><img src=[red]'[/red]../photos/" & objRS("Photo1") & "[red]'[/red] name=[red]''[/red] width='100' height='80' ></td>"
This should help display the images correctly. It doesnt explain why you are only getting 3 out of 5 records though.


Tony
 
Or maybe this would be easier to read:
Code:
While Not objRS.EOF
%>
<tr>
<td align="center"><%=objRS("Location")%></td>
<td align="center">" & objRS("Postcode")%></td>
<td align="center">" & objRS("NumberOfRooms")%></td>
<td align="center">" & objRS("Price")%></td>
<td align="center">" & objRS("status")%></td>
<td align="center"><img src="../photos/<%=objRS("Photo1")%> width="100" height="80"></td>
</tr>

<%
objRS.MoveNext
Wend
 
Opps, forgot the <%= around some of the objRs("") in my last post.
 
Something is still missing... [pipe].

------
"There's a man... He's bald and wears a short-sleeved shirt, and somehow he's very important to me. I think his name is Homer."
(Jack O'Neill, Stargate)
[banghead]
 
Thanks vongrunt,
Missing the " around the img scr
Isn't hack code like job security? :)

Here is another try at correct source code.
Code:
While Not objRS.EOF
%>
<tr>
<td align="center"><%=objRS("Location")%></td>
<td align="center">" & <%=objRS("Postcode")%></td>
<td align="center">" & <%=objRS("NumberOfRooms")%></td>
<td align="center">" & <%=objRS("Price")%></td>
<td align="center">" & <%=objRS("status")%></td>
<td align="center"><img src="../photos/<%=objRS("Photo1")%>" width="100" height="80"></td>
</tr>

<%
objRS.MoveNext
Wend
 
Doh, get rid of the & in the 4 lines.
I think I will give up on this post :)
 
Howdy DotNetGnat,
I am assuming that the name of the picture is stored in his database, so I am just placing the name in the string.

Last try at correct code (missing alt and name tags)
Code:
While Not objRS.EOF
%>
<tr>
<td align="center"><%=objRS("Location")%></td>
<td align="center"><%=objRS("Postcode")%></td>
<td align="center"><%=objRS("NumberOfRooms")%></td>
<td align="center"><%=objRS("Price")%></td>
<td align="center"><%=objRS("status")%></td>
<td align="center"><img src="../photos/<%=objRS("Photo1")%>" width="100" height="80"></td>
</tr>

<%
objRS.MoveNext
Wend
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top