Includes no longer displaying in design view

Somehow my #includes are not showing in split or design view.  Example: <!--#include virtual="/includes/topNav/topNav_housing.asp"----------->  This would be my header and navigation file.  In the past it showed in design view right at the top of the page. Now not displaying.  I know design view is not accurate and not neccessary, but really bugging me that I can't see the whole page anymore....  Side Note:  my home page index file located in the root folder DOES display this info. All files located down a level do not.
These have been showing for years, now in CS5 and previously in version 8.  I didn't change any settings, they just stopped showing today. The pages work properly online. I use this code snippet for a variety of objects per page.  All .asp files.   I feel like something stupid accidentally got changed.  Just not sure what.  I have found lots online about initial set-up errors, but mine was working.
advice?

Thanks Nancy...   Here is what I found. Maybe you (or someone could shed some light on this for me).
Here is what is placed in all of my documents: 
<!--#include virtual="/includes/topNav/topNav_housing.asp"----------->
The home page that displayed properly in Dreamweaver looked like this:
<!--#include virtual="/includes/topNav/topNav_home.asp"-->
Removing all but two of the dashes as the end of the code snippet fixed the problem and the Header started to disply in Design view.   I am not a programmer, and my HTML/CSS knowledge is self taught, but this code has been in place from a previous designer for years.  Does it make a difference?  What could have changed?   I have thousands of these pieces in my site, I guess I need to fix them all.....

Similar Messages

  • SSI includes do not display in design view.

    Hi,
    I am working on an existing site. By "existing", I mean there
    was no Dreamweaver site definition. I created the site definition
    but, when I open pages that use ssi, the included files do not show
    in design view. If I reinsert the include, it show in design view.
    The code is the same in code view. Is there some way to update the
    includes so I don't have to reinsert them?
    Thank you,
    Henry

    By "header/footer" tags, Ken means "<html>,
    <head>, or <body>" tags - you
    have none of those in your files being included, do you?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Henry Anthony" <[email protected]> wrote in
    message
    news:f2skgv$aej$[email protected]..
    > Ken,
    >
    > I inherited the site. To work on it in Dreamweaver, I
    had to create the
    > site
    > definition. So, the site was defined after it was built.
    The include files
    > are
    > fine. No header/footer tags. I assumed the includes
    would show when I
    > opened a
    > file but they will only show if I reinsert the include
    while in design
    > view.
    > Upon examination of the code after the reinsert, there
    is no change.
    >
    > Thanks,
    > Henry
    >

  • Site no longer previewing in design view

    Hello,
    The site I need help with is a classic asp site. I am using Dreamweaver CS5.5 and am working in Windows 7 Professional.
    For over a year I have been opening files directly from two separate servers (one is testing, the other is live) and the files previewed fine in design view. One day design view stopped working for asp files on both servers and I do not know what caused this. HTML files still preview fine.
    On the live server, design view is not recognizing the included header, any of the css, or the images when I open .asp files. When I paste the include into the main document I can get the css to work by removing the initial '/' character from the path leading me to believe this is a pathing issue. I do not want to change my pathing in the files as the site is rendering properly in the browser and there is not a inital '/' character in the includes original path to remove anyway.
    When I open a .asp file from the test sever, the included file is showing in design view but again I have to change the pathing to the css in order for it to render properly in design view. It is rendering properly in the browser.
    The loss of design view is making my styleing very challenging. I think I need to tell dreamweaver where the root of the testing and live server are. I'm not sure is this is the solution and if it is I am not sure how to implement it. Any help would be greatly appreciated. Thank you.
    Paul

    Thanks Nancy...   Here is what I found. Maybe you (or someone could shed some light on this for me).
    Here is what is placed in all of my documents: 
    <!--#include virtual="/includes/topNav/topNav_housing.asp"----------->
    The home page that displayed properly in Dreamweaver looked like this:
    <!--#include virtual="/includes/topNav/topNav_home.asp"-->
    Removing all but two of the dashes as the end of the code snippet fixed the problem and the Header started to disply in Design view.   I am not a programmer, and my HTML/CSS knowledge is self taught, but this code has been in place from a previous designer for years.  Does it make a difference?  What could have changed?   I have thousands of these pieces in my site, I guess I need to fix them all.....

  • TranslateMarkup output not displaying in design view

    Hi
    I'm trying to take a set of php pages which all follow a similar style
    <?php
    $p=new page();
    $p->rightCol=<<<RC
         SOME HTML GOES HERE
    RC;
    $p->mainContent=<<<MC
         SOME OTHER HTML GOES HERE
    MC;
    This then pulls in various other files (css, js etc) and renders on the website. I'm used to working with an IDE and hand-writing php code. My non-technical colleague would like to edit the html using WYSIWYG and is used to using DW. At the moment the html in the heredoc strings doesn't display in design view. I've been trying to rejig the pages using translators and can convert the above php into html which renders fine in a browser. The html output from the translateMarkup function doesn't display in design view. I think I'm probably fighting a losing battle (for instance I'm not sure how I'm going to make html editable in DW even if I can get it to render), but if anyone could explain why the html won't render I'd be very grateful. My translator is
    <html>
    <head>
    <title>Conditional Translator</title>
    <meta http-equiv="Content-Type" content="text/html; charset=">
    <script language="JavaScript">
    function translateMarkup(docNameStr, siteRootStr, docContent){
    //Find the right col stuff, delimited by <<<RC\n and RC;\n
    var regexRC=/<<RC([\s\S]*)RC;/;
    var regexMC=/<<MC([\s\S]*)MC;/;
    var rcContent = regexRC.exec(docContent)[1];
    var mcContent = regexMC.exec(docContent)[1];
    var ret = (getHeader()+'<main>'+mcContent+'</main><aside id="rightcol">'+rcContent+'</aside>'+getFooter());
    return ret;
    function getTranslatorInfo() {
      var transArray = new Array(6);
    transArray[0] = "LG_TRANS";
    transArray[1] = "Translates for LG";
    transArray[2] = "1";
    transArray[3] = "php";
    transArray[4] = "0";
    transArray[5] = "allFiles";
    transArray[6] = "50";
    return transArray;
    function getHeader() {
      return '<!DOCTYPE html><html><head><title>TEST</title></head><body>';
    function getFooter() {
      return '</body></html>';
    </script>
    </head>
    <body>
    </body>
    </html>

    unless there's any way of rewriting the files before upload and download (ie dynamically rewrite the php pages as html before dreamweaver opens them, then rewrite them back as php before they're uploaded - I'm clutching at straws).
    I believe that this should be possible but I'm definitely not a DW extensionologist so I couldn't say for sure. Also, I believe that the tricky part would be the last step -> WYSIWYG edits back to PHP, which may well be impossible.
    If you want to talk to someone who knows DW inside out, contact the guys at http://www.projectseven.com. They are excellent.

  • DW8:  image won't display in Design View

    Folks:
    DW8 on MacOS 10.4.8 (fully updated) on Intel iMac.
    What would keep an image from displaying in DW Design View?
    What are the causes of the grey box with the superimposed "X"? Is
    there any diagnostic output that might help? Is the grey box and
    "X" substituted by DW8 for an invalid or un-drawable graphic, or is
    this done by the OS?
    The problem:
    I've got a 1912 x 1481 graphic, a geographic map, in AI that
    I'm trying to use as an ordinary web image, but DW won't display it
    in Design View. Instead all I see is a big grey box and "X". For
    test purposes, I'm starting from a new "Basic" HTML web page and
    all I'm doing is inserting this one image. I need to get this
    working so I can draw hotspots on this graphic to make it
    "clickable" .
    Here's what I've tried:
    o Triple-checking that the inserted image reference is
    correct. Yes, the image file is correctly linked. With the image
    selected, the inspector shows a tiny but recognizable miniature of
    the expected image. Further, when the page and the image are
    uploaded to the web server and I look at it via a browser, the
    expected image is _always correctly displayed.
    o Exporting the graphic "for the web" from AI as both a GIF
    and a medium-quality JPG. Neither of these are displayed in Design
    View; both are served up correctly after being uploaded
    o I found a larger JPG on a different site I'm managing. This
    always displays as expected in both DW Design View and when served
    up. I substituted the failing map JPG image. The result: A grey
    box.
    o Checking the map images: The JPG and GIF versions seem to
    be visible in all environments (image readers, browsers, etc.) I've
    checked _except_ DW8 Design View.
    o Checked on another system. I made the failing image
    available to a very helpful ACE, who performed a similar
    experiment. It worked fine for him. I used his exact HTML and
    directory structure -- and it failed for me. Grey box with "X".
    It seems to me that I've checked most of the obvious
    possibilities. Now it is time to check the less obvious ones.
    Suggestions are very welcome!
    Thanks,
    Henry

    Randy:
    Thanks for your response.
    This is a virtual memory system, so -- in theory-- it should
    accommodate anything that will fit on the hard drive, more or less,
    if I'm wiling to wait the hours (days?) it will take to swap on and
    off the disk. That assumes DW8 takes advantage of the capability.
    It may not.
    "Larger"? The JPG image I compared to is 1692 x 2160 pixels,
    but weighs slightly less, 289K bytes. I'm losing track of all my
    test images that fail, but a representative one is 1912 x 1481
    pixels and weighs 332Kb on the disk. "Roughly comparable" might be
    a better description. The point is still reasonable: DW8 does
    handle images of this size on my system.
    One issue that occurred to me recently is that I may have
    caused some grief by monkeying with the "Save for web" settings at
    the Illy export. Perhaps I asked for some configuration that's
    normal for Illy to export --or it would have warned me, I hope--
    but too strange for DW to grok. DW should complain more
    informatively than painting a gray box and "X" when that happens, I
    would think.
    Henry

  • Icons no longer display in grid view in Yosemite

    Hello,
    All of a sudden, the icons in folders no longer display in Grid view, but only in the other kinds of view list etc.
    Please, I need your help since that is the preferred method I use to display my icons
    Here is a link to the screenshot of what I see for further reference:
    http://monosnap.com/image/jxliJJrL8dvX8cSsLFFlRm899BqYRN
    Any help would be more than appreciated! I am desperate!

    Right click the Application icon in the Dock.
    Select "Grid" or "Automatic" under "View content as" from the menu that pops up.

  • Includes Not Displaying in Design View

    I have an html page whose content is kept mostly in include
    pages. In the DW8 Design View, these includes are not displaying.
    For example, a page that should have a height of 600px only
    displays the masthead and footer; it's as if the includes do not
    even exist. However, when I test it in the browsers, all is well.
    Is there a Preference Setting or plug-in that I am missing?
    Any suggestions are welcome.
    Thank you in advance for your time and consideration.

    > For example, a page that
    > should have a height of 600px only displays the masthead
    and footer; it's
    > as if
    > the includes do not even exist.
    Can you post a link to this page? Can you also tell us where
    the includes
    are (or post the raw code here)?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "The WereMike" <[email protected]> wrote in
    message
    news:ep55lh$pkj$[email protected]..
    >I have an html page whose content is kept mostly in
    include pages. In the
    >DW8
    > Design View, these includes are not displaying. For
    example, a page that
    > should have a height of 600px only displays the masthead
    and footer; it's
    > as if
    > the includes do not even exist. However, when I test it
    in the browsers,
    > all
    > is well.
    >
    > Is there a Preference Setting or plug-in that I am
    missing? Any
    > suggestions
    > are welcome.
    >
    > Thank you in advance for your time and consideration.
    >

  • External/Remote Images no longer appear in Design View!

    Hi,
    First post here.
    Suddenly external/remote images in Dreamweaver CS3 no longer appear when viewed in Design View.
    All I get now is grey boxes!
    I have tried toggling 'Display External Files' on and off, made sure Cache is off (tried it with on too) and nothing seems to make a difference.
    If anyone could help please, it's so annoying
    Thanks,
    James

    Windows XP.
    I'm an experienced web designer, 10+ years so you will have to trust me my code is fine.
    It just shows the grey boxes in place of where the images should be.

  • Is there any way to display the Design View in fluid grid pages?

    After upgrading to the newest version of DW CC 2014, I noticed that the Design View is disabled in Fluid Grid pages. You can only use the Live View to edit those pages. The Design/Live button displays on non-fluid pages.
    I'm wondering if there is a work-around to allow Design View editing on fluid pages. It is a major hassle to try to edit some things in the Live View. It would nice to have a choice.

    Have you actually tried using is? Try this?
    1) Create a new Responsive Layout. We’ll call it demo.php, fluid.css and the usual accompanying DW files.
    2) Enter demo.php and progress is normal. Everything works. You can choose to view both Live and Display and edit accordingly.
    3) Close down DW.
    4) Open DW and open demo.php
    5) There is NO LONGER a Display View option and Live View does not EDIT. (at least it doesn't for me)
    6) I can ONLY edit work in CODE view.
    Thus, on brand new files, all is fine. The moment DW is closed and the files becomes “old” it can no longer be seen or edited properly.
    How am I supposed to provide support to clients? How can I access a Responsive site I built last week when Live View will not edit and Display will not display?
    I feel this is a programming error, not a purposeful act.

  • Inserting tabbed navigation code makes my web page not display in design view..

    Hi everyone..
    I am on Dreamweaver 8 for MAC, and was working on a couple of web pages..these pages included divs and tables. But when I tried inserting a tabbed navigation I found at:
    http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm
    In a nutshell, it asked me for step 1 to:
    Step 1: Insert the        below CSS and script into the HEAD section of your page:
    <link rel="stylesheet" type="text/css" href="tabcontent.css" />
    <script type="text/javascript" src="tabcontent.js">
    * Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    </script>
    The next step was this:
    Step 2: Finally, simply add the below      HTML to where you wish the Tab Content to appear on the page:
    <h3>Demo #1- Basic implementation</h3>
    <ul id="countrytabs" class="shadetabs">
    <li><a href="#" rel="country1" class="selected">Tab 1</a></li>
    <li><a href="#" rel="country2">Tab 2</a></li>
    <li><a href="#" rel="country3">Tab 3</a></li>
    <li><a href="#" rel="country4">Tab 4</a></li>
    <li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
    </ul>
    <div style="border:1px solid gray; width:450px; margin-bottom: 1em; padding: 10px">
    <div id="country1" class="tabcontent">
    Tab content 1 here<br />Tab content 1 here<br />
    </div>
    <div id="country2" class="tabcontent">
    Tab content 2 here<br />Tab content 2 here<br />
    </div>
    <div id="country3" class="tabcontent">
    Tab content 3 here<br />Tab content 3 here<br />
    </div>
    <div id="country4" class="tabcontent">
    Tab content 4 here<br />Tab content 4 here<br />
    </div>
    </div>
    <script type="text/javascript">
    var countries=new ddtabcontent("countrytabs")
    countries.setpersist(true)
    countries.setselectedClassTarget("link") //"link" or "linkparent"
    countries.init()
    </script>
    <p><a href="javascript:countries.cycleit('prev')" style="margin-right: 25px; text-decoration:none">Back</a> <a href="javascript: countries.expandit(3)">Click here to select last tab</a> <a href="javascript:countries.cycleit('next')" style="margin-left: 25px; text-decoration:none">Forward</a></p>
    <hr />
    Well, I did all the steps required, but when I put this inside a div I had inside a table, all of a sudden I couldnt see anything in my design view, only two tables that arent even the same size..When I take out all this code, I get back my regular page..Can I see this tabbed navigation in my design view? Unfortunately, I dont have the spry widgets since I am on Dreamweaver 8..If I preview it in both Safari and Firefox (on Mac Firefox/3.0.8) (Safari 3.2.1) I can see everything fine, including the tabbed navigation..But designing in code isnt really helpful because I want to see what it looks like in design view, in case we change things-its just easier for me to work on..So I assume there is something in this code that is making my design view show nothing..
    Update:I tried taking out the code again, but this time, I couldnt see anything again, even without this code..
    I know that I can go to validation website, and I got a lot of errors-but all the pages I have that are in the same style have those same errors too—and they display fine..its only when I insert this specific piece of code that everything goes haywire..Is it even possible to view tabbed navigations (like the one in the above link) inside of Dreamweaver Design View?
    Any help would be appreciated..

    DW8 doesn't render any dynamic content, so I'd say it's a no go. You'll just have to live with that limitation or upgrade to CS4...
    Mylenium

  • Coldfusion error displaying in Design view... ???

    This just popped up this morning:
    It's an error from a cfc I wrote. Why is this displaying in the Design View, and why is it there, especially when the cfc works correctly? To my knowledge, nothing has changed in flex Builder, but any help in removing this would be appreciated.
    Thanks,
    Les

    Somehow I managed to remove a section of code from the CFC. Since one of the CFFUNCTIONs was missing, it threw the error, right in design view.
    Once I replaced the missing code, everything was back to normal

  • JavaScript does not display in Design view

    Hi,
    I am just starting to learn JavaScript so excuse my, maybe stupid, questions.
    Why the following code does not display Hello world! in Split view on the "design" side? When I upload the file onto the server and try to view it in the browser everything displays normally.
    <!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>Homepage</title>
    </head>
    <body>
    <script type="text/javascript">
    document.write("Hello World!");
    </script>
    </body>
    </html>

    Hi,
    This is normal, design view is simply a way of either creating your website using the wysiwyg method or if you code the website it is a way of getting an idea what the site will look like static.  Design view doesn't run any scripts, which is why in the more recent versions of dreamweaver we have LiveView which does run the scripts and allow you to interact with drop down menus and the like, which you can't do in DesignView.
    Richard

  • Page isn't displaying in design view

    I just recently upgraded from Dreamweaver 2004 to CS3.
    Everything in 2004 looked just great, I could see everything on the
    page, all my tables, everything. When I open the exact same page in
    CS3, there is almost nothing there. All the HTML code is there, but
    all I can see in design view is my Heading, background image, and a
    small image in the upper-right hand corner. The rest of the page is
    just blank. Am I doing something wrong here or what? I've been
    playing with setting for like a week now and can't see to get it to
    display the entire page, no matter what I try. Any hep would be
    greatly appreciated, thanks!!!

    DWCS3 is much less tolerant of bad code than DMX2004 was.
    Your symptoms
    sound like that's the problem. Can we see the page, please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "danodemano" <[email protected]> wrote in
    message
    news:f9nh5s$lg5$[email protected]..
    >I just recently upgraded from Dreamweaver 2004 to CS3.
    Everything in 2004
    > looked just great, I could see everything on the page,
    all my tables,
    > everything. When I open the exact same page in CS3,
    there is almost
    > nothing
    > there. All the HTML code is there, but all I can see in
    design view is my
    > Heading, background image, and a small image in the
    upper-right hand
    > corner.
    > The rest of the page is just blank. Am I doing something
    wrong here or
    > what?
    > I've been playing with setting for like a week now and
    can't see to get it
    > to
    > display the entire page, no matter what I try. Any hep
    would be greatly
    > appreciated, thanks!!!
    >

  • Code not displaying in Design View

    Why would code visible in code view not be visible in design view?  DW cs4, using lesson pages from Adobe DW cs4 CIB.[I'm stuck and can't complete my lesson!]

    Display problems are most often caused by malformed code or an imbalance in opening and closing <div> tags.  Try validating your code and fix reported errors.
               Code Validation Tools
              CSS - http://jigsaw.w3.org/css-validator/
              HTML - http://validator.w3.org/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Font display in design view is wrong / browser displays it correctly

    The links I place on my webstie pages display with the wrong (too large) font in design view but when the page is viewed in a browser, the links are displayed correctly. I have CSS entries in place that control link behavior and display and they work just fine in a browser but in design view, the link displays as a larger font than it should. I make all of the links bold.   If I put a "class= "  specification inside the <a> tag, then the size is right but if I then make the text bold, the size is once again displayed too large.  If the text is not inside the <a> tag and it it's part of <p class="..."  and I make it bold, it displays as bold and as specified by the class..
    In other words
    <p class="class1">text1
    <strong><a href="reference">text2</a></strong>
    </p
    Tthe size of text2 is always too large in display mode but is correctly displayed in a browser.
    Any ideas?
    B. Berkov

    Good point ... I inherited the code and CSS and changed a couple of 10pt to 12px so changing the CSS for links to 12px instead of 10pt will probably fix it.  Still, I would have thought that design view would match what's seen in the browser regardless.
    Thanks,
    B. Berkov

Maybe you are looking for

  • [SOLVED] EurKEY PKGBUILD request for comments

    Hi, I just finished a PKGBUILD for EurKEY "European Keyboard Layout". It installs and removes fine on my system, and I took care to respect the packaging standards, but before submitting it to AUR I would like to get any comments/suggestions. PKGBUIL

  • [Solved] Cannot connect to wireless

    So I'm trying to connect to wireless but I'm having trouble. It seems to happen no matter what wireless network I try to connect to. I open up wifi-menu and select the network I want to connect to, but I get an error: Job for netctl@wlp1s0\x2dTSC.ser

  • A problem for Finder

    I don't know what is wrong with it. I click the Applications on the left side. The Finder closed by itself.  Before it was open again. Now it doesn't. I need help to fix it. Thank you guys.

  • Business Connector timeout during closing of databaseconnection

    Hi all I have problems with the connection from SAP Business connector to MS Access with JDBC-ODBC bridge. This works perfectly on an old server: BC46 running on Windows NT, connecting to an access97 database. I'm using the standard sun.jdbc.odbc.Jdb

  • Convert MP4 to FLV (for integration on timeline Flash Pro.)

    Hello guys, I'm having trouble converting MP4 to FLV file, after this latest update seems to me that it was discontinued this type of conversion formats of videos. need to convert a mp4 to flv videos and integrate the timeline in Flash Professional.