[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.2

Nested Repeat Region using Filter

Asked by RascalBird in Active Server Pages (ASP)

Hi All

I know this is probably something small but it is frustrating me no end!

I am trying to generate a nested repeat region but all I am getting at the moment is every record from the recordset openedits being displayed instead of just the ones relating to the recordset openreqs.

See code below:

<%@LANGUAGE="JAVASCRIPT"%>
<!--#include file="Connections/itreqdb.asp" -->
<%
var openreqs__MMColParam = "1";
if (String(Session("MM_username")) != "undefined" &&
    String(Session("MM_username")) != "") {
  openreqs__MMColParam = String(Session("MM_username"));
}
%>
<%
var openreqs = Server.CreateObject("ADODB.Recordset");
openreqs.ActiveConnection = MM_itreqdb_STRING;
openreqs.Source = "SELECT fullrequestdata.reqid, fullrequestdata.dateadded, users.user, users.username, users.centrename,  fullrequestdata.loggeduser, fullrequestdata.centre, fullrequestdata.reportedby, fullrequestdata.priority, fullrequestdata.requesttype, fullrequestdata.affecting,  fullrequestdata.errorcode, fullrequestdata.description  FROM users, fullrequestdata  WHERE users.username = '"+ openreqs__MMColParam.replace(/'/g, "''") + "' AND users.user = fullrequestdata.loggeduser AND fullrequestdata.requesttype IN (1, 2)";
openreqs.CursorType = 0;
openreqs.CursorLocation = 2;
openreqs.LockType = 1;
openreqs.Open();
var openreqs_numRows = 0;
%>
<%
var openedits = Server.CreateObject("ADODB.Recordset");
openedits.ActiveConnection = MM_itreqdb_STRING;
openedits.Source = "SELECT *  FROM editdata";
openedits.CursorType = 0;
openedits.CursorLocation = 2;
openedits.LockType = 1;
openedits.Open();
var openedits_numRows = 0;
%>
<%
var Repeat1__numRows = -1;
var Repeat1__index = 0;
openreqs_numRows += Repeat1__numRows;
%>
<%
var Repeat2__numRows = -1;
var Repeat2__index = 0;
openedits_numRows += Repeat2__numRows;
%>


<body>

<% while ((Repeat1__numRows-- != 0) && (!openreqs.EOF)) { %>
<table width="80%" border="0" cellspacing="5" cellpadding="0">
      <tr>
        <td><%=(openreqs.Fields.Item("reqid").Value)%></td>
        <td><%=(openreqs.Fields.Item("dateadded").Value)%></td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>
                <%
FilterParam = openreqs.Fields.Item("reqid").Value
openedits.Filter = "reid = " & FilterParam
while ((Repeat2__numRows-- != 0) && (!openedits.EOF)){
%><td>
<%=(openedits.Fields.Item("dateadded").Value)%>;
</td>
<%
Repeat2__index++;
openedits.MoveNext();
}
%>
          </td>    
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
</table>
  <%
  Repeat1__index++;
  openreqs.MoveNext();
}
%>
<p>&nbsp;</p>
</body>
[+][-]06/14/06 03:50 AM, ID: 16901266Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/14/06 04:04 AM, ID: 16901322Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/14/06 04:18 AM, ID: 16901397Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Active Server Pages (ASP)
Sign Up Now!
Solution Provided By: cyberwebservice
Participating Experts: 1
Solution Grade: A
 
[+][-]06/14/06 11:52 PM, ID: 16909319Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/15/06 01:07 AM, ID: 16909543Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/15/06 05:34 AM, ID: 16910814Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/15/06 05:40 AM, ID: 16910850Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/15/06 05:41 AM, ID: 16910859Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/15/06 05:47 AM, ID: 16910904Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/15/06 06:32 AM, ID: 16911243Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/15/06 07:32 AM, ID: 16911821Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/16/06 08:20 AM, ID: 16921026Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/26/06 06:15 PM, ID: 16989110Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/26/06 09:53 PM, ID: 16989888Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-89