Ask a Question related to Dreamweaver AppDev, Design and Development.
-
doc #1
Recordset Filter question - Nested repeat region
Hi,
I am using Tom Steepers Tutorial to nest a recordset found here....
[url]http://www.dmxzone.com/ShowDetail.asp?NewsId=394[/url]
Does anyone know how I can use a seond variable on a recordset.filter
????? I know their is one more than one recordset involved here but
the different variable all display fine. It is a syntax problem on the
line marked with the >>>>>> below.
Thanks.
Code Sample
<%
FilterParam3 = Recordset1.Fields.Item("MenuID").Value
FilterParam4 = MenuSections.Fields.Item("MenuSectionID").Value"& FilterParam4>>>>>>Dishes.Filter = "MenuID = " & FilterParam3 & " & MenuSectionID =
While (NOT Dishes.EOF)
%>
<tr>
<td
class="txtBrown"> <%=(Dishes.Fields.Item("Dis hName").Value)%></td>
<td> <%=filterparam5%></td>
<td> </td>
</tr>
<%
Dishes.MoveNext()
Wend
%>
doc Guest
-
Nested Repeat region
Before Upgrading to CS I used to use the Extension from those clever peps at InterAkt to do this but now for some reason its incompatible!!! ... -
Recordset filter question for MySQL
Hi I am looking to filter a query with three conditions and can not find the correct syntax. I am looking to search on a type of vehicle then a span... -
repeat region
Hi.. I use repeat region to view only 10 records at a time, so how can I have another link that when user click on next it will go to another 10 of... -
Repeat Region Question
I have a repeat region section that contains news blips. I would like a horizonal rule beween them, but NOT the very last one. Is there a way to... -
php repeat region
Hey guys, question about PHP, I'm trying to help out a friend but I don't really know anything about php. I'm also pretty amaturish at asp. I... -
doc #2
Re: Recordset Filter question - Nested repeat region
SORRY......
I was missing the AND in the sql statement......
doc wrote:> Hi,
>
> I am using Tom Steepers Tutorial to nest a recordset found here....
> [url]http://www.dmxzone.com/ShowDetail.asp?NewsId=394[/url]
>
>
> Does anyone know how I can use a seond variable on a recordset.filter
> ????? I know their is one more than one recordset involved here but
> the different variable all display fine. It is a syntax problem on the
> line marked with the >>>>>> below.
>
> Thanks.
>
> Code Sample
>
> <%
> FilterParam3 = Recordset1.Fields.Item("MenuID").Value
> FilterParam4 = MenuSections.Fields.Item("MenuSectionID").Value> "& FilterParam4> >>>>>>Dishes.Filter = "MenuID = " & FilterParam3 & " & MenuSectionID =
> While (NOT Dishes.EOF)
> %>
> <tr>
> <td
> class="txtBrown"> <%=(Dishes.Fields.Item("Dis hName").Value)%></td>
> <td> <%=filterparam5%></td>
> <td> </td>
> </tr>
> <%
> Dishes.MoveNext()
> Wend
> %>doc Guest



Reply With Quote

