Link to home
Start Free TrialLog in
Avatar of judsonmusic
judsonmusicFlag for United States of America

asked on

cfdiv not working?

please review my code. this is the main page of servicemysite.com

why is the CFDIV not binding???? I have 3 calls to cover my butt here and nothing is working!

code is attached.


<cfajaximport tags="CFDIV, CFFORM, CFTEXTAREA"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ServiceMySite!</title>
<meta name="description" content="Don Longo Cigars, LLC" />
<meta name="keywords" content="Don Longo, Cigars, Charlotte, NC Cigars, Charlotte Cigars" />
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>

<body onload="ColdFusion.navigate('AJAX_underCons.cfm', 'contentMain');">
<cfinclude template="header.cfm">
<cfinclude template="leftNav.cfm">
<cfdiv id="contentMain" bind="URL:AJAX_underCons.cfm">this is a test, this content is not in the AJAX call. if the AJAX call was working it would be replaced. :( Whats wrong here????</cfdiv>
<cfinclude template="footer.cfm">
</body>
</html>
<script>
window.init=ColdFusion.navigate('AJAX_underCons.cfm', 'contentMain');
</script>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of azadisaryev
azadisaryev
Flag of Hong Kong image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial