Date:  02/04/2003 09:55:04 PM Msg ID:  001312
From:  FoxWeb Support Thread:  001310
Subject:  Re: Response.Redirect Problem
The merge tags <% and %> should only be used in HTML blocks to switch to a code block or an expression.  If you are already in a code block, then all you need to do is use regular string commands and functions:
 
Response.Redirect("regedit.fwx?edtuser=" + M.userID)

FoxWeb Support Team
support@foxweb.com email

Sent by Joe Goldsmith on 02/04/2003 02:17:55 PM:
Hello. I need to redirect the user to an edit page and pass along the user's mytable.userID. I tried:
 
Response.Redirect("regedit.fwx?edtuser=<%=M.userID%>")
 
But it's passing m.userID as the value and not the user's ID. I checked that the variable m.userid has the right value and it does but that value is not passed.
 
Can someone please show me the error of my ways please?

Joe