What Version of CF are you running? Chris
John Eubanks wrote: > Hi, I am having a quandry of a moment. I have a dynamic select box, which > populates with an address (or addresses). Below that, I have text boxes for > fields such as city, state, and zip. I need to see if I can get some > assistance on the population of those text boxes if the address changes in > the select. The coding is listed below, and any and all assistance is > welcome. > > Code: > > > <cfselect name="SShip" class="style1" style="background-color:FFFFCC"> > <cfloop query="GetSomeMore"> > <option value="#Address1#">#Address1# > </cfloop> > </cfselect> > <br> > <cfinput type="text" name="SAddress2" class="style1" > style="background-color:FFFFCC"> > <br> > <cfif #Address3# Contains ""> > <cfinput type="text" name="SAddress3" class="style1" > style="background-color:FFFFCC" value="#Address3#"> > <br> > </cfif> > <cfinput type="text" name="SCity" class="style1" > style="background-color:FFFFCC" value="#City#"> > > <cfinput type="text" name="SState" class="style1" > style="background-color:FFFFCC" value="#State#" size="1" maxlength="2"> > > <cfinput type="text" name="SPostal_Code" class="style1" > style="background-color:FFFFCC" value="#Postal_Code#" size="3"> > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Check out the new features and enhancements in the latest product release - download the "What's New PDF" now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289082 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

