I have an internal application that I am developing, about server configurations.<br><br>I have a list of customers who own servers.<br>I have a list of software which is linked to the list of servers.<br>My server list looks like this (simplified):
<br><br>url: &quot;ServerList?CustomerID=123456&quot;<br><br>&lt;tal:x repeat=&quot;server here/serverlist-sql&quot;&gt;<br>&lt;tal:x replace=&quot;server/name&quot;&gt;servername&lt;/tal:x&gt;<br clear="all">&lt;tal:x replace=&quot;server/ID&quot;&gt;server ID number&lt;/tal:x&gt;
<br>&lt;tal:x replace=&quot;structure here/ServerSoftwareList&quot;&gt;list of software goes here&lt;/tal:x&gt;<br>...&lt;/tal:x&gt;<br>The problem is that the ServerSoftwareList needs the &quot;server/ID&quot; passed to it for the query, which will return the software on file for that server... any ideas?
<br>-- <br>Thanks,<br>Derek Wilson