ASP page displaying SQL table data
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > IIS server support > IIS ASP > ASP page displaying SQL table data




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    ASP page displaying SQL table data  
student


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-24-07 12:17 AM

I am struggling with this asp page. I need to solve this as part of a class
project. It is designed to simply read a SQL table and display the data in
the browser. But it will only show one record based on ID at a time. So if I
have multiple records with the same ID such as page.asp?ID=9734, it would
show all records using that ID in the browser.

The result set would display a table with a title header like Guest Name and
Description

Below that would be a table with three columns. Reading from left to right
it would show...

Program ID      Guest Name      Guest Description
9734                Name               some description here

The actual table called T_ProgramGuests has several records with this 4
digit number but only one shows up in the browser when tested. I need it to
show all of them but I'm not sure if I should be adding a Loop or IF Then
Else section to my page. I sure could use some help with the code. See below
the entire ASP page code.

[CODE]
<%
set con = Server.CreateObject("ADODB.Connection")
con.Open "File Name=E:\webservice\Company\Company.UDL"
set recProgram = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM T_ProgramGuests
INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
(T_ProgramGuests.ProgramID = 9726)"

'strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM T_ProgramGuests
INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
T_ProgramGuests.ProgramID = & Request("ID")

' <-- THE BELOW VERSION WORKS. THE ABOVE VERSION KEEPS FAILING -->
'strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM T_ProgramGuests
INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
(T_ProgramGuests.ProgramID = 9734)"


recProgram.Open strSQL,con
%>


<body>
<TABLE BORDER="1" CELLPADDING="2" CELLSPACING="1" WIDTH="100%">

<p><b>Guest Name and Description:</b></p>
<tr>
<th width="15%" align="left">Program ID</th>
<th width="35%" align="left">Guest Name</th>
<th width="55%" align="left">Guest Description</th>
<tr>
<TD headers="t1"><%=recProgram.Fields("ProgramID")%></TD>
<TD headers="t2"><%=recProgram.Fields("GuestName")%></TD>
<TD headers="t3"><%=recProgram.Fields("GuestDescription")%></TD>
</tr>
</table>

<%
recProgram.Close
con.Close
set recProgram = nothing
set con = nothing
%>

</body>
</html>
[/CODE]

Any help with this is much appreciated
--
Technical School Student





[ Post a follow-up to this message ]



    RE: ASP page displaying SQL table data  
student


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-24-07 12:17 AM

Forgot to mention the SQL server version is 8.0
--
Technical School Studen


"student" wrote:

> I am struggling with this asp page. I need to solve this as part of a clas
s
> project. It is designed to simply read a SQL table and display the data in
> the browser. But it will only show one record based on ID at a time. So if
 I
> have multiple records with the same ID such as page.asp?ID=9734, it would
> show all records using that ID in the browser.
>
> The result set would display a table with a title header like Guest Name a
nd
> Description
>
> Below that would be a table with three columns. Reading from left to right
> it would show...
>
> Program ID      Guest Name      Guest Description
> 9734                Name               some description here
>
> The actual table called T_ProgramGuests has several records with this 4
> digit number but only one shows up in the browser when tested. I need it t
o
> show all of them but I'm not sure if I should be adding a Loop or IF Then
> Else section to my page. I sure could use some help with the code. See bel
ow
> the entire ASP page code.
>
> [CODE]
> <%
>  set con = Server.CreateObject("ADODB.Connection")
>  con.Open "File Name=E:\webservice\Company\Company.UDL"
>  set recProgram = Server.CreateObject("ADODB.Recordset")
> strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM T_ProgramGuest
s
> INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
> (T_ProgramGuests.ProgramID = 9726)"
>
> 'strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM T_ProgramGues
ts
> INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
> T_ProgramGuests.ProgramID = & Request("ID")
>
> ' <-- THE BELOW VERSION WORKS. THE ABOVE VERSION KEEPS FAILING -->
> 'strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM T_ProgramGues
ts
> INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
> (T_ProgramGuests.ProgramID = 9734)"
>
>
> recProgram.Open strSQL,con
> %>
>
>
> 	<body>
> 	<TABLE BORDER="1" CELLPADDING="2" CELLSPACING="1" WIDTH="100%">
>
> <p><b>Guest Name and Description:</b></p>
>   <tr>
>     <th width="15%" align="left">Program ID</th>
> 		<th width="35%" align="left">Guest Name</th>
> 		<th width="55%" align="left">Guest Description</th>
> 	<tr>
> 		<TD headers="t1"><%=recProgram.Fields("ProgramID")%></TD>
> 		<TD headers="t2"><%=recProgram.Fields("GuestName")%></TD>
> 	  <TD headers="t3"><%=recProgram.Fields("GuestDescription")%></TD>
>   </tr>
> </table>
>
> <%
> recProgram.Close
> con.Close
> set recProgram = nothing
> set con = nothing
> %>
>
>   </body>
> </html>
> [/CODE]
>
> Any help with this is much appreciated
> --
> Technical School Student





[ Post a follow-up to this message ]



    Re: ASP page displaying SQL table data  
Jw Vriesman


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-24-07 12:26 PM

See snippet


"student" <student@discussions.microsoft.com> wrote in message
news:FF7F1106-CC58-4BCC-AABE-B45BF3154433@microsoft.com...
>I am struggling with this asp page. I need to solve this as part of a class
> project. It is designed to simply read a SQL table and display the data in
> the browser. But it will only show one record based on ID at a time. So if
> I
> have multiple records with the same ID such as page.asp?ID=9734, it would
> show all records using that ID in the browser.
>
> The result set would display a table with a title header like Guest Name
> and
> Description
>
> Below that would be a table with three columns. Reading from left to right
> it would show...
>
> Program ID      Guest Name      Guest Description
> 9734                Name               some description here
>
> The actual table called T_ProgramGuests has several records with this 4
> digit number but only one shows up in the browser when tested. I need it
> to
> show all of them but I'm not sure if I should be adding a Loop or IF Then
> Else section to my page. I sure could use some help with the code. See
> below
> the entire ASP page code.
>
> [CODE]
> <%
> set con = Server.CreateObject("ADODB.Connection")
> con.Open "File Name=E:\webservice\Company\Company.UDL"
> set recProgram = Server.CreateObject("ADODB.Recordset")
> strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM
> T_ProgramGuests
> INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
> (T_ProgramGuests.ProgramID = 9726)"
>
> 'strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM
> T_ProgramGuests
> INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
> T_ProgramGuests.ProgramID = & Request("ID")
>
> ' <-- THE BELOW VERSION WORKS. THE ABOVE VERSION KEEPS FAILING -->
> 'strSQL = "SELECT *, T_ProgramGuests.ProgramID AS Expr1 FROM
> T_ProgramGuests
> INNER JOIN T_Programs ON T_ProgramGuests.ProgramID = T_Programs.ID WHERE
> (T_ProgramGuests.ProgramID = 9734)"
>
>
> recProgram.Open strSQL,con
> %>
>
>
> <body>
> <TABLE BORDER="1" CELLPADDING="2" CELLSPACING="1" WIDTH="100%">
>
> <p><b>Guest Name and Description:</b></p>
>  <tr>
>    <th width="15%" align="left">Program ID</th>
> <th width="35%" align="left">Guest Name</th>
> <th width="55%" align="left">Guest Description</th>

----------------------------snippet
<%
Do while recProgram.eof = false
%>


> <tr>
> <TD headers="t1"><%=recProgram.Fields("ProgramID")%></TD>
> <TD headers="t2"><%=recProgram.Fields("GuestName")%></TD>
>   <TD headers="t3"><%=recProgram.Fields("GuestDescription")%></TD>
>  </tr>
<%
recProgram.movenext
loop
%>

----------------------------snippet
> </table>
>
> <%
> recProgram.Close
> con.Close
> set recProgram = nothing
> set con = nothing
> %>
>
>  </body>
> </html>
> [/CODE]
>
> Any help with this is much appreciated
> --
> Technical School Student







[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 07:13 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register