View Single Post
Old 04-04-2011, 05:15 PM   PM User | #1
Jt107
New Coder

 
Join Date: Nov 2002
Posts: 29
Thanks: 1
Thanked 0 Times in 0 Posts
Jt107 is an unknown quantity at this point
Cfdiv Binding Variable with # sign Issue

Have a problem using cfdiv binding variable, because it contains # in the value, so when it passed in Firefox it truncked anything from # sign on.
here is the code:
<form name="myForm" method="post">

<b><center>Part Name</center></b><br>
<select name="Avail_Names" id="Avail_Names">
<cfoutput query="getName">

<option value ="#getName.name#"> #name#

</cfoutput>
</select>
</form>

<cfdiv id="nameDiv" bind="url:desc.cfm?name={Avail_Names}"/>


The code works with IE browser but not in Firefox.
Not sure what is the way to bypass # in that variable, or I should not use CFDIVE altogether. Appreciate your help.
Jt107 is offline   Reply With Quote