Here's some code:

qry_userlist
<cfquery name="userlist">
SELECT *
FROM user
</cfquery>

dsp_userlist
<cfoutput>
<table>
<cfloop query="userlist">
<tr>
  <td>#name#</td>
  <td><a href=""> </tr>
</cfloop>
</table>
</cfoutput>

The next request (to "#self##xfa.updateUser#") will have the userID
available in the attributes scope (attributes.userID).

cheers,
barneyb

On Fri, 10 Sep 2004 15:23:32 -0700, Rodger <[EMAIL PROTECTED]> wrote:
> I can to run a query (in a qry fuse), display it in a table (in a dsp fuse),
>
> and I want the user to click on an update link next to each entry in the
> table.
> I then want to pass the index from that entry to the next qry/dsp fuses.
> I am unable to pass the index variable to the next fuse.
>
> As a test I just tried to set a variable using a <cfset name="value"> and
> passing that to another
> dsp fuse. I could not get that to work.
>
> I can pass a form textbox from one fuse to another.
>
> What am I doing wrong?
>
> Rodger
--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to