Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems Using Tab Navigator

Status
Not open for further replies.

marieannie

Programmer
Joined
Jan 14, 2004
Messages
84
Location
US
Hi!, I'm new programming in Dreamweaver, and I need help with a tab navigator I want to use... I'm using dreamweaver 2004 version 7.0
In a dreamweaver demo I saw that I can use Tab Navigator with <cfformgroup>
I copied the code exactly as the demo showed. But it's not working...The page doesn't display anything and take a while to refresh... Can anyone tell me if there is an error???

Here is the code I'm using:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>TEST</title>
</head>

<body>
<cfform format="flash" width="1000">
<cfformgroup type="TabNavigator">
<cfformgroup type="Page" Label ="Employee" height="200">
<cfformgroup type="Horizontal" label="Name:">
<cfinput type="Text" name="Firstname">
<cfinput type="Text" name="lastname">
</cfformgroup>
<cfinput type="Text" name="email" label="Email">
</cfformgroup>


<cfformgroup type="page" label="Vacation" height="200">
<cfinput type="Text" name="VacationStartDate" Label="Vacation Start Date">
<cfinput type="Submit" name="Submit" value="Save">
</cfformgroup>
</cfformgroup>
</cfform>
</body>
</html>


Thank you for your time!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top