On Wed, Feb 11, 2009 at 11:04 AM, Nupur Gupta <nupurgupta0...@gmail.com> wrote:
>
> <cfset val = "Form.theTextBox_#curIndex#">

All that does is set "val" to a string, not the actual form value.

Use this:

<cfset val = form["theTextBox_#curindex#"]>

or if you prefer, this:

<cfset val = evaluate("form.theTextBox_#curIndex#")>

But if you evaluate, people with harass you. =)

Rick


-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319174
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to