Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
GrloftheCity #1
Form tag makes everything disappear
I have been working with DW for years, but just recently upgraded to DW 8, (on
a Mac), and I am noticing a peculiar problem. If you look at the code below,
you will see that I am trying to add form tags to a form that's in a table,
nestled within a table. In looking at the code, it should work, but once I add
that closing "form" tag, the whole editable region and everything in it
completely disappears!
Any ideas on what is going wrong? Thanks!
[Q]<!-- InstanceBeginEditable name="Content" --><span
class="headertext">Contact Us </span>
<p> Fields marked with a <span class="style1">*</span> are
required to ensure a timely response!</p>
<table width="400" cellpadding="2">
<tr>
<td width="114" valign="top" bgcolor="#F0F0F0"><div
align="right">Name:</div></td>
<td width="274">
<form name="contact" method="post" action="">
<input name="Name" type="text" id="Name"></td>
</tr>
<tr>
<td valign="top" bgcolor="#F0F0F0"><div
align="right">E-mail:</div></td>
<td><input name="Email" type="text" id="Email"></td>
</tr>
<tr>
<td valign="top" bgcolor="#F0F0F0"><div
align="right">Subject:</div></td>
<td><input name="Subject" type="text" id="Subject"></td>
</tr>
<tr>
<td valign="top" bgcolor="#F0F0F0"><div
align="right">Message:</div></td>
<td><textarea name="Message" cols="35" rows="10"
id="Message"></textarea></td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF"> </td>
<td><input name="Submit" type="submit" id="Submit"
value="Submit"> <input name="Reset" type="reset" id="Reset"
value="Reset"></form></td>
</tr>
</table>
<p> </p>
<!-- InstanceEndEditable -->[/Q]
GrloftheCity Guest
-
Form Fields Disappear
Hi, I'm trying to create a form. AAP8.0 has recognised some of my fields from my PDF export (from Pages). However when I try and add fields they... -
How to make: Checking box makes a dollar value appear on the form
In my form I have two radio button boxes. One is accept, the other is reject. When someone checks the accept box, I want a dollar value to appear on... -
Panels that disappear!!
dman2 wrote: Wish I did. I have a weird panel behavior as well: double-clicking on a swatch makes the swatch panel, tint panel and mixer panel... -
User changing something on a form makes asp.net take user to login page
Hi, I have an application that displays the database table records on the web page, the user can navigate thru the contents and make changes and... -
OEM jobs don't disappear
Hi all, I am using OEM with Management Server. I have created some JOBS and after a while I have deleted those but they won't disappear, they... -
Murray *ACE* #2
Re: Form tag makes everything disappear
Your code is invalid. That's why it is disappearing - DW doesn't know what
to do with it.
<td width="274">
<form name="contact" method="post" action="">
<input name="Name" type="text" id="Name"></td>
If you are opening a form within a <td>, you must CLOSE it within that same
<td>. You are not doing that. Your best solution would be to wrap the form
around that inner table, rather than putting it within the inner table.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"GrloftheCity" <webforumsuser@macromedia.com> wrote in message
news:e6lkkv$7nd$1@forums.macromedia.com...>I have been working with DW for years, but just recently upgraded to DW 8,
>(on
> a Mac), and I am noticing a peculiar problem. If you look at the code
> below,
> you will see that I am trying to add form tags to a form that's in a
> table,
> nestled within a table. In looking at the code, it should work, but once
> I add
> that closing "form" tag, the whole editable region and everything in it
> completely disappears!
>
> Any ideas on what is going wrong? Thanks!
>
> [Q]<!-- InstanceBeginEditable name="Content" --><span
> class="headertext">Contact Us </span>
> <p> Fields marked with a <span class="style1">*</span> are
> required to ensure a timely response!</p>
> <table width="400" cellpadding="2">
> <tr>
> <td width="114" valign="top" bgcolor="#F0F0F0"><div
> align="right">Name:</div></td>
> <td width="274">
> <form name="contact" method="post" action="">
>
> <input name="Name" type="text" id="Name"></td>
> </tr>
> <tr>
> <td valign="top" bgcolor="#F0F0F0"><div
> align="right">E-mail:</div></td>
> <td><input name="Email" type="text" id="Email"></td>
> </tr>
> <tr>
> <td valign="top" bgcolor="#F0F0F0"><div
> align="right">Subject:</div></td>
> <td><input name="Subject" type="text" id="Subject"></td>
> </tr>
> <tr>
> <td valign="top" bgcolor="#F0F0F0"><div
> align="right">Message:</div></td>
> <td><textarea name="Message" cols="35" rows="10"
> id="Message"></textarea></td>
> </tr>
> <tr>
> <td valign="top" bgcolor="#FFFFFF"> </td>
> <td><input name="Submit" type="submit" id="Submit"
> value="Submit"> <input name="Reset" type="reset" id="Reset"
> value="Reset"></form></td>
> </tr>
> </table>
> <p> </p>
> <!-- InstanceEndEditable -->[/Q]
>
Murray *ACE* Guest



Reply With Quote

