Question
Dreamweaver is Not Compatible with Coldfusion
I've posted about this before, but now this problem is
getting worse. I can't understand why dreamweaver's design view
does not work with coldfusion. Does cfeclipse work better for a
wysiwyg interface? This small page displays blank in Dreamweaver 8.
I might as well be using Notepad to make my web pages. Most of my
coldfusion pages will not display in design view. What does it take
to display cfml in dreamweaver. Does anybody else use dreamweaver
with coldfusion?
<cfapplication name="winningclients" sessionmanagement="yes">
<!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=iso-8859-1" />
<title>Untitled Document</title>
<style>
.StoryContentColor {
color: #FFFF00;
background-color: #000000;
}
.style3 {
color: #000000;
font-weight: bold;
}
body {
background-image: url();
background-repeat: no-repeat;
}
.style10 {font-size: 24px}
</style>
</head>
<body>
<cfinvoke component="wccom" method="getMRbySalesPerson" salesperson_id=#Session.sessuser# returnvariable="mp">
<table align="center" height="100" border="2" bordercolor="#C0C0C0" background="people.gif">
<caption class="style3">
Choose Function
</caption>
<tr>
<th bordercolor="#C0C0C0" class="style3" scope="col"><strong><a href="insertmaster_people.cfm" class="style3 style10">Insert Person </a>
<br>Or</strong></th>
</tr>
<tr>
<th scope="col" valign="middle">
<cfform name="form1" id="form1" method="post" action="modifypeople.cfm">
<cfselect name="chosenperson" query="mp" display="FullName" value="RecID"></cfselect>
<cfinput type="submit" name="submit" value="Choose Person">
</cfform> </th>
</tr>
</table>
</body>
</html>
Rick64t
<cfapplication name="winningclients" sessionmanagement="yes">
<!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=iso-8859-1" />
<title>Untitled Document</title>
<style>
.StoryContentColor {
color: #FFFF00;
background-color: #000000;
}
.style3 {
color: #000000;
font-weight: bold;
}
body {
background-image: url();
background-repeat: no-repeat;
}
.style10 {font-size: 24px}
</style>
</head>
<body>
<cfinvoke component="wccom" method="getMRbySalesPerson" salesperson_id=#Session.sessuser# returnvariable="mp">
<table align="center" height="100" border="2" bordercolor="#C0C0C0" background="people.gif">
<caption class="style3">
Choose Function
</caption>
<tr>
<th bordercolor="#C0C0C0" class="style3" scope="col"><strong><a href="insertmaster_people.cfm" class="style3 style10">Insert Person </a>
<br>Or</strong></th>
</tr>
<tr>
<th scope="col" valign="middle">
<cfform name="form1" id="form1" method="post" action="modifypeople.cfm">
<cfselect name="chosenperson" query="mp" display="FullName" value="RecID"></cfselect>
<cfinput type="submit" name="submit" value="Choose Person">
</cfform> </th>
</tr>
</table>
</body>
</html>
Rick64t