Foye Troute wrote: > I am working on some new pages and am getting very odd errors. Odd because >they seem to be browser dependant. On my development system (XP ProSP2 with >CFMX.)I don't see the error. On a laptop with XPHomeSP2 I don't see the >error. On a laptop with Win2000 I see the errors. > >The page is on a production system at: >http:www.waterfront-properties.com/agents.cfm?curragent=3 This is a results >page normally called from a form. Works from a URL also. > >The error is: >Internet Explorer Script Error. >An error has occurred in the script on this page. >'_CF_checknew_all is undefined' >followed by a second error >'startms' is undefined > The problem is your CFFORM.
<FORM NAME="new_all.cfm" METHOD=POST onSubmit="return _CF_checknew_all.cfm(this)"> You have the action in the name field of the form and no action. You don't actually make use any of the benefits of CFFORM, so I would suggest changing your cfform to an ordinary form tag and any CFINPUTs to ordinary INPUT tags. This would give you : <form name="yourformname" action="new_all.cfm" method="post"> formfields in here.... </form> Regards Stephen ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http://www.houseoffusion.com/banners/view.cfm?bannerid=34 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182487 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

