CS3 Design view blank when & lt; body & gt; in the editable area

Anyone run into this? There seems to be a bug, maybe new in DW CS3 (9.0 build 3481)
When a < body > tag is put into an editable region, DW does not recognize the editable regions and the Design view is empty. When you save this model, an error 'this model doesn't have any editable regions... ". "However, Validation of the codes and check Template syntax will return no errors. Moving the body tag out of the combo box corrects the problem. Here is an example of model:

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" " 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 > example of a model < /title >
< / head >

<!-TemplateBeginEditable name = 'body'->
< body id = "foo" >
<! - TemplateEndEditable - >

< h1 > it's model text < / h1 >

<!-TemplateBeginEditable name = "bodytext"->
< p > text does not display in mode Design < /p >
<! - TemplateEndEditable - >

< / body >
< / html >

Thanks for the reply. Sorta, I suspected that was the case, but it would be nice if this restriction has been documented somewhere - in particular validation don't complain of controls

I am aware of the editable tag attributes option, but am working with a site developed by a third party. I was hoping not to have to rework it.

Pei

Tags: Dreamweaver

Similar Questions

  • When I opened my mail the beep are out of sync

    When I opened my mail the beep are out of sync. So if I have 5 new messages the beep are delayed a few seconds?

    Outlook Express

    What is a POP3 account? Outlook Express uses only a new mail sound notification when new messages are received, regardless of whether there is one or fifty. The sound emitted can be linked in: Control Panel | Sounds and Audio devices | Sounds scroll to the new mail Notification option.

    If you get a distinct beep for each message, it is not a POP3 account, or it is a third-party application, you have installed.

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • What file or a setting in the game engine automatically starts when you choose a plane, the engines are already started on the track.

    Microsoft Flight Simulator X

    What file or a setting in the game engine automatically starts when you choose a plane, the engines are already started on the track.

    Thank you

    Nick Satullo

    E-mail address is removed from the privacy *.

    Original title: Flight Simulator X

    Hi Nick,

    Please post your request in the Microsoft Flight Simulator forums and it would be better suited to the community of players for Windows. Please visit the link below to find a community that will provide the support you want for better assistance.

    http://support.Microsoft.com/GP/games-for-Windows

  • Design view Blank in CS4

    For some reason AutoResize is coming up completely blank in DreamWeaver CS4, with the exception of 3 icons for the encoding of document, title and the CSS file. Œuvres view live very well, but Design view fails to demonstrate anything.

    Does anyone know which parameter allows you to set this?

    Thank you

    Sean

    Thank you. It was fashion design, Code Live is grayed out, as there is no code not XHTML in the file... The problem has been one of those accidental clicks where I accidentally broadened the area of window with icons above to use the entire vertical screen area (I knew it was something stupid). If the area design visible under the icons at the top was only a few pixels high (almost invisible).

    You can see an example at the: http://www.envisagement.com/forum_images/DWCS4_Problem.gif

  • (Dell LCD) screen goes blank when I connect. Requires the switching on of the screen on and outside

    (Dell LCD) screen goes blank when I connect.  Requires power to the power on and off screen, at least 15 to 20 times before picture stays on.  Any suggestions? No to the problem site so don't have the model numbers.  Dell computer and about 8 years.

    Looks like your monitor is having problems sync-ing for the resolution settings that you have defined for your monitor.  When you get your screen is displayed, right-click on an empty area of your desktop-> properties-> (tab) settings.

    Then, in the 'Screen Resolution' area, try to move the cursor to the end of 'Less' and click 'apply '.  It will then try to change to this new resolution.  If your screen is empty for now, just wait about 30 seconds and it will return to the previous resolution (which can mean that you need to power cycle your monitor you have done to get it back)-otherwise accept the settings if your display looks OK.  Try to find a solution that works with your monitor.  It is also possible that your monitor is going bad.

    HTH,

    JW

  • Mail body blank when mail is sent by the java source compiled.

    create or replace and compile java source named MailExMulti as
    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import java.net.URL;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletRequest;
    import javax.servlet.http.HttpServletRequest;
    import java.sql.Clob;
    public class SendSimpleMail {
      public static void sendmail(String s) {
          Properties props = new Properties();
           props.put("mail.smtp.host", "xxx.xxx.com");
           props.put("mail.smtp.socketFactory.port", "123");
           props.put("mail.smtp.socketFactory.class",
                           "javax.net.ssl.SSLSocketFactory");
           props.put("mail.smtp.auth", "true");
           props.put("mail.smtp.port", "123");
            Session session = Session.getInstance(props,
              new javax.mail.Authenticator() {
              protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication("[email protected]", "aaa");
              }
              });
            try {
              MimeMessage msg = new MimeMessage(session);
    javax.mail.Multipart multiPart = new MimeMultipart("mixed");
    MimeBodyPart textpart = new MimeBodyPart();
    textpart.setText("\r\nasdsadsadsad");
    multiPart.addBodyPart(textpart);
              msg.setFrom(new InternetAddress("[email protected]"));
              msg.setRecipients(Message.RecipientType.TO, "[email protected]");
              msg.setSubject("Simple Test Mail");
              msg.setSentDate(new Date());
             
              msg.setContent(multiPart);
              msg.saveChanges();
              File file;
              file = new File("D:"+"//msg1.txt");
              try{
              msg.writeTo(new FileOutputStream(file));
              }
              catch(Exception e)
              {
              System.out.println("File does not exists...");
              }
              Transport.send(msg);
        System.out.println("---Done---");
            } catch (MessagingException mex) {
            mex.printStackTrace();
            }
      }
    }
    
    

    When we call the java source above for pl/sql an empty body is sent to the recipient, so that if I copy this code and work in stand-alone jdk the recipient is able to see the body. Any help would be greatly appreciated.

    If we directly set html in msg.setcontent without recipient multipart, is able to see the body.

    But I need to make this work with addbodypart and several parts that I intend to integrate images later in the mail.

    Oracle DB version: 11.2.0.2.0

    used container: javax.mail - 1.5.0.jar

    That may be relevant to the multipart construction, but that's just a guess.

    With the help of Java to send mails to the database is no longer really needed. There is UTL_SMTP and UTL_MAIL:

    https://docs.Oracle.com/CD/E11882_01/AppDev.112/e40758/u_mail.htm#ARPLS384

    UTL_SMTP

    Or this thread: need help with sending e-mail s

  • Using issue view file when you use mp3s on the internal memory and the memory microSD external

    (1) if I have folders of mp3 on the player's internal memory and on the external drive microSD memory, can I use the folder to view all folders on the 2 memorys simultaneously integrated on one list or do I have to go through the files on each memory separately.

    (1) if the answer to question 1 is Yes, then I would like to now if I can have on the internal memory and external memory records with the same name, but with different files and the player will display these folders with both files on the internal memory and the external.

    I want to know because I like to browse through the files, and if the internal memory is full, I wish I could add more files in the folders where the internal memory by making a folder with the same name on the micro sd, and I don't like to go through the files on 2 devices at the same time, just on 1 list.

    Help, please.

    Thanks in advance

    The Clip + Treaty internal and external cards in 2 separate sources, under the folder view (it is quite logical, when you think of him, and just as 2 separate cards on your computer).  And if you look at the 2 lists separately (again, just like on your computer).  When you view your files using ID3 tags, both internal and external map content is merged in 1.

    If you do not have to see 2 separate lists, you can simply keep most / all of your content on the map either internal or external (even by, if you were really dead set on it, for example get a 2 GB Clip + and then using 8 or 16 GB external with her new card).

  • When I get in front with pictures I can view but when I send these emails the image transfer that words, how can I solve this problem?

    When I send emails that have pictures, not forward.  The recipient gets only red x and no pictures.  What can I do to fix this?

    No, I use hotmail. Any suggestions?

    Ask the experts of Hotmail? They have their own forums. Many of us, including myself, do not use this program and are unable to provide a solution.

    Windows Live Solution Center Hotmail Forum
    http://windowslivehelp.com/forums.aspx?ProductID=1

  • When I copy and paste, the results are stripped of formatting.

    It's weird, I can copy and paste, but all pasting is wiped clean of formatting, underlying formulas (in Excel), hyperlinks, etc.  This happens in all programs (Word, Excel, gmail) and when the copy/paste between programs (Word to gmail).
    It must be a global setting of XP SP3.  I tried to roll back the computer a week, but the problem exists (not sure when it started).
    Any ideas?
    Thank you

    When you paste that you get a symbol down at the bottom that gives you paste options and select keep source formatting?

    http://www.excelforum.com/Excel-General/764099-copy-paste-losing-formatting.html

    This link mentions him "style" of excel, find out what the problem described is the same as yours. "

    http://help.WUGNET.com/office/copying-tab-loses-formattingftopic-1165433-DAYS0-orderasc-8.html

    This link mentions him ' theme'of the spreadsheet. "

    http://www.howtogeek.com/HOWTO/28478/copy-and-paste-in-Outlook-without-messing-up-your-formatting/

    He mentions how to keep the updated source in the form an email

    http://answers.Microsoft.com/en-us/Office/Forum/Excel

    Finally, if none of the help above, it is the link to the forum office.

  • When I start my computer, the Fans are running, but it doesn't dΘmarre

    When I turn on my computer Windows Vista, the Fans continue to operate, but it won't start.  There is no sign indicating that the computer is Hung Up.  My monitor as you sleep and said there is no connection.  The monitor is connected but.  The Maximum waiting time for my computer is about 30 Minutes, but I waited 24 hours and it is still stuck at the Fans.

    Hello

    If you do not get the manufacturer's logo & if the monitor LED goes from green to Orange after a certain time, then it is a hardware error.

    Recently changed the location of your system? You can try reinstalling the RAM. Also, remove the CMOS battery once & check.

    Go back to help.

  • What data dictionary view can tell me what columns in the index are compressed?

    So I can create an index compressed on a table like this:

    create index t23_idx on t23 (col3, col5, col1) compress 2;

    This creates an index with a degree of compression of 2. So far so good.

    But how do I know what columns are in fact, compressed at a later date? View USER_INDEX tells me that if COMPRESSION is enabled, but there is nothing on the view USER_IND_COLUMNS to say which columns are compressed.

    Of course, I can retrieve information through DBMS_METADATA. GET_DDL but I'm really after receiving a request, because it is more convenient.

    I had hopes for SYS. ICOL$. SPARE1, but that doesn't seem to be compatible with what I expect. However, if someone can confirm that this column is indeed the Badger so I gladly adjust my expectations.

    Cheers, APC

    OK, I may not read your question.
    DBA_INDEXES. PREFIX LENGTH is "the number of columns in the prefix of the compression key."

    http://docs.Oracle.com/CD/E11882_01/server.112/e24448/statviews_1106.htm#i1578369

    Mike

  • How to view a report according to another region, the elements are filled.

    Using Apex 3.2.
    I have two reqions on the page, one being an interactive report, I won't show up until the search form box is populated.

    When they click on the button 'Search' I want the interactive report to display based on the values of completed from the search form.
    I hide a point on the page which is filled when the completed search engine which I use as a condition to hide/show the report.

    My problem is that I can never get the interactive report to display. My routine after process updated the element to hide but my shipment leaves me
    on the same page.

    How can I get the interactive report to show after the user clicks the search button?
    I thought that refreshing the page would help?

    Thank you

    And P3_SHOW_REPORT the value 'Y' in session state?

    What are the properties used Source, the Source Type and default value of the P3_SHOW_REPORTpoint?

  • While making a film with pictures on windows movie maker, all imported correctly and saved in the project. When reopening project some of the pictures are displayed as a red x, how do get back us photos?

    Photo reference numbers appear under the frame in the storyboard, but not photo just a red cross!

    Hello

    Thanks for your solution, I will try and will let you know thanks again

    Ray

    ===================================
    You are welcome and thank you for the update. Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • I get an error code 80070005 when all users outside of the administrator are trying to connect to the Internet.

    On a recently purchased HP laptop, access to internet and "computer" are blocked and trigger an error 80070005 Windows for all users other than the administrator. Is there a solution?

    Original title: error 80070005 blocking internet connection (and more) for all users other than the administrator.

    Hi tired of flamel,

     

    Thank you for keeping us posted.

    Glad to know that the problem is solved. Do not hesitate to contact Microsoft Windows Forums for issues related to Windows in the future.

  • RH10 project will save not subject in Design view.

    I made a post a while ago where I solved her problems in a project where we could not save the topics in Design view.  Go to the view HTML before a topic will save.  In the past we have found that the problem has been altered and or virgins User Variables.  This project has only 1 variable now and when we went from RH9 to RH10, our problem is back.  No other issue does exist in this project... so far... we can be as a result of the upgrade RH10.

    Has anyone else had this problem and or have their solution?  We have other projects like this that have no problem at all.  This project was created about eight years ago and spread through many versions of HR where our other projects have been through upgrades 1 or 2.  Perhaps some old junk is ruin it?

    Thank you

    DV

    I understood why the subjects won't save in Design view but will save in HTML view.  When our project has updated the references to our global variable for 'Revision_Current-letter' were broken.  I went to each master page (14 in all) and remove the variable global in the foot and replaced with the same variable but just a fresh itteration.  Then generated a report properties topic and find 3 subjects who had this false variable link.  I replaced these links with a new one and suddenly I could still save files in Design view.

    So very strange why Design discover blocked me to record subjects as a global variable was damaged.  When I double click on the wrong variable, he came empty.  I know that it is a problem of having empty variables in the past.  I guess the people of Adobe haven't fixed this problem of having a variable with no value!

    Hope this helps someone else.

    One other point, my project still does not compile HTML Help.  It helps on the Web, but not HTML Help.  I think I have a lead, but I'm going to open a new discussion for that because it's got a strange problem double path.

    DV

Maybe you are looking for

  • How can I block calendar invitation spam?

    All of a sudden this week I started to receive emails from [email protected] asking me if I want to subscribe to the different calendars obviously spam such as: Calendar 'subscribe to 'Longchamp Discount Event' of the Trusted Apple, find the la

  • Pavilion g6 - 2379sr: graph Pavilion g6 problem

    Hello!I have problems with my HP Pavilion g6 - 2379 sr video drivers.Windows 8.1 operating system (x 64) Graphics card: Intel HD 4000 + AMD 7670 M When I first installed Windows 8.1, my Intel HD graphics drivers and AMD, the two came via WIndows upda

  • USB drivers for dv6-6c35dx

    I have problems getting my USB ports to register at all, it shows the usb controller drivers are installed and working properly, but when I plug something in it does not, please help

  • Small blue screen issue Please Help

    Hello I turned on my pc this morning an appeard blue screen with something like the following below. I've never seen before read something like - if seen first computer reboot /hardware - then went to connect (before I pressed F9 - diagnostic tool to

  • Connect 2 routers to extend coverage

    I am about to connect 2 routers with LAN-to-LAN connection to increase the coverage of my original poor E2000. I read that some-related posts in the forum and 3733 in Cisco KB article: (http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=785463d9ecaf4c