10g nested includes?

I have a parent file that includes the first file shown below, 'displayLayout.uix'. You can see that this file attempts to include 'displayView.uix', also shown below. All three files are in the same directory on the server. The first include works fine, the second reports "displayLayout.uix:line 11,col 85: Unable to resolve include" to the server log. Can I not nest includes, or am I doing something wrong?
---- displayLayout.uix ----
<?xml version="1.0" encoding="windows-1252"?>
<tableLayout xmlns="http://xmlns.oracle.com/uix/ui"
            xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
            xmlns:html="http://www.w3.org/TR/REC-html40" width="100%"
            borderWidth="1" height="100%">
    <contents childData="${ pageBean.portletPage.panelRows }">
        <rowLayout>
            <contents childData="${ uix.current['.'] }">
                <cellFormat height="100%" width="100%">
                    <contents>
                        <include node="${ ctrl:parsePage( uix, 'displayView' ) } "/>
                    </contents>
                </cellFormat>
            </contents>
        </rowLayout>
    </contents>
</tableLayout>
---- displayView.uix ----
<?xml version="1.0" encoding="windows-1252"?>
<tableLayout xmlns="http://xmlns.oracle.com/uix/ui">
    <contents>
        <text text="${ uix.current.portletPanel.name }" />
    </contents>
</tableLayout>

Hm, no, it doesn't appear to be from the nesting, as I copied the contents of displayLayout.uix into the parent document driectly, and it still can't resolve displayVeiw.uix. I've tried several variations of the content of displayView, but the error makes it sound more like it just can't find the file.

Similar Messages

  • 9.0 beta nested includes - they're broken

    This existed in the previous version, it's still broken. We get the same error from Xerces, so I assume it's an inherited feature. Regardless, we're SOL with this bug.
    We're running into a problem with nested includes, one file being included by multiple other files.
    For example,
    Schema A
    Schema B includes Schema A
    Schema C includes Schema A and Schema B
    When validating an XML data file against the schema we get an error such as this:
    <Line 5, Column 46>: XSD-2209: (Error) Duplicated definition for: 'actualIntervalLength'
    null

    This is an issue we were desperately hoping would be fixed in this release... I believe Keith meant to say that this situation DOES work in Xerces without error.
    We'd love to be able to switch back to the Oracle parser because of the great speed gains (Xerces does not currently cache schemas, bringing performance way down). However, this particular issue makes doing so impossible.

  • 10g Nested Tables and APEX

    Trying to use the following within Apex:
    CREATE TYPE location_typ AS OBJECT (
    location_id NUMBER(4),
    street_address VARCHAR2(40),
    postal_code VARCHAR2(12),
    city VARCHAR2(30),
    state_province VARCHAR2(25));
    CREATE TYPE nt_location_typ AS TABLE OF location_typ;
    CREATE TYPE country_typ AS OBJECT (
    country_id CHAR(2),
    country_name VARCHAR2(40),
    locations nt_location_typ);
    CREATE TYPE nt_country_typ AS TABLE OF country_typ;
    CREATE TABLE region_tab (
    region_id NUMBER,
    region_name VARCHAR2(25),
    countries nt_country_typ)
    NESTED TABLE countries STORE AS nt_countries_tab (
    (PRIMARY KEY (NESTED_TABLE_ID, country_id))
    ORGANIZATION INDEX COMPRESS
    NESTED TABLE locations STORE AS nt_locations_tab);
    Can get Apex to function in the Tabular Report mode by modifying the query to use the correct syntax:
    select "REGION_ID",
    "REGION_NAME",
    c.COUNTRY_ID,
    c.COUNTRY_NAME,
    l.LOCATION_ID,
    l.STREET_ADDRESS, l.POSTAL_CODE,
    l.CITY,
    l.STATE_PROVINCE
    from "#OWNER#"."REGION_TAB", TABLE(COUNTRIES) C, TABLE(LOCATIONS) L
    Built a 'Maintenance' form. Put the Region base column on it. Then built a tabular form (with an updateable query) on the same page to access the first level Nest ( countries). Haven't figured out how to actually edit the values yet, but feel comfortable I will.
    But - trying to provide editing to the 2nd level nested table elements creates a problem. First, only 1 updateable query can be on a page. Hmmm - so to get around this I guess I have to build a new page that the calling updateable query will access when selecting one of the tabular form elements. Not elegant by any means. Was hoping to provide a blank form on the right side that would be populated by the Location Nested Table values when a select was made on the first level nest. Oh well.
    Just curious how anyone has handled this? I could pass stack between pages for sure, but was hoping page regions would be sufficient to handle this.
    Any white papers on this? Anything in the DEMO area to use as a template? The default Demo doesn't provide this based on querying user objects.
    Thanks,
    Dwight Taylor

    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> CREATE OR REPLACE TYPE table_type AS TABLE OF VARCHAR2 (8);
      2  /
    Type created.
    SQL> CREATE TABLE r(
      2    a INTEGER,
      3    b table_type)
      4    NESTED TABLE b STORE as b_1;
    Table created.
    SQL> CREATE TABLE s(
      2    a INTEGER,
      3    b table_type)
      4    NESTED TABLE b STORE as b_2;
    Table created.
    SQL> INSERT INTO r VALUES (1, table_type ('a', 'b'));
    1 row created.
    SQL> INSERT INTO s VALUES (1, table_type ('b', 'c'));
    1 row created.
    SQL> COLUMN c FORMAT A10;
    SQL> SELECT r.a, r.b MULTISET UNION DISTINCT s.b c
      2  FROM   r, s
      3  WHERE  r.a = s.a;
             A C
             1 TABLE_TYPE('a', 'b', 'c')
    SQL>

  • Exceptions from nested includes not thrown to errorPage

    In our application a central dispatcher servlet includes JSPs.
              These JSPs include other JSPs. When an Exception is thrown from one of these
              pages it is not thrown, even when the error page is indicated in the
              included JSP with the page directive and the Exception is explicitly thrown
              from a catch block.
              I apprciate any thoughts.
              Thanks.
              -mc
              

    can u send the code snippet?
    "Abhishek" <[email protected]> wrote in message
    news:[email protected]..
    Hi
    I am having a stateless session bean(SLBean) which uses a singleton
    class(Single1). Both the SLBean and the Single1 are in the same jar
    file. Single1 contains a static method called getInstance() which
    returns the instance of the Single1(if not already existing).
    The probelm is that when I try to do the "Single1.getInstance()" from
    the stateless bean, then some exception( java.rmi.RemoteException:
    EJBException: ;nested Exception is: Java.lang.NullPointerException) is
    thrown.and getInstance() method of Single1 class in never invoked.
    What might be the problem? why am I not able to call my singleton
    class from the staless bean.
    Thanks in advance.
    Abhishek

  • 10g UIX includes

    I'm having trouble with the include tag. I thought I could include any XML that represented exactly one root UINode and its children. I've got a main page that has subsections, each of which is to manage its own layout, and within that layout I want to include the same kind of content. I've tried to boil my approach down to a simple example. The files below represent 'Top.uix', 'Middle.uix', and 'Bottom.uix' respectively. In my actual code, the equivalents of the Middle and Bottom files both include <tableLayout> nodes, but here I have the Bottom with just a <cellFormat> for simplicity. With the code below, I get 'Unable to resolve include' already at the Top level. In my actual code, I get this at the equivalent of the Middle include, but if I paste the <tableLayout> from the 'Bottom' file directly into the 'Middle' file, everything works fine. What is it that I'm doing wrong?
    Top.uix
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
          xmlns:ui="http://xmlns.oracle.com/uix/ui"
          xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
          xmlns:html="http://www.w3.org/TR/REC-html40"
          expressionLanguage="el">
        <content>
            <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
                <provider>
                    <data name="listOfLists" >
                   <inline>
                        <one text="one one" /><one text="one two" /><one text="one three" />
                        <two text="two one" /><two text="two two" /><two text="two three" />
                   </inline>
              </data>
                </provider>
                <contents>
                    <document>
                        <contents>
                            <body>
                                <contents>
                        <include node="${ ctrl:parsePage( uix, 'Middle' ) } "/>
                                </contents>
                            </body>
                        </contents>
                    </document>
                </contents>
            </dataScope>
        </content>
    </page>Middle.uix
    <?xml version="1.0" encoding="windows-1252"?>
    <tableLayout xmlns="http://xmlns.oracle.com/uix/ui"
                 xmlns:ctrl="http://xmlns.oracle.com/uix/controller" width="100%"
                 height="100%">
        <contents childData="${ listOfLists }">
            <rowLayout>
                <contents childData="${ uix.current }">
                    <include node="${ ctrl:parsePage( uix, 'Bottom' ) }"/>
                </contents>
            </rowLayout>
        </contents>
    </tableLayout>Bottom.uix
    <?xml version="1.0" encoding="windows-1252"?>
    <cellFormat xmlns="http://xmlns.oracle.com/uix/ui" width="100%" height="100%">
         <contents>
              <text text="${ uix.current }" />
         </contents>
    </cellFormat>

    The files sent shouldn't work, however the following "should" work and doesn't and a bug has been filed.
    Thanks,
    Gabrielle
    top.uix
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <data name="listOfLists">
    <inline>
    <one text="one one"/>
    <one text="one two"/>
    <one text="one three"/>
    <two text="two one"/>
    <two text="two two"/>
    <two text="two three"/>
    </inline>
    </data>
    </provider>
    <contents>
    <document>
    <contents>
    <body>
    <contents>
    <tableLayout xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    width="100%" height="100%">
    <contents >
    <rowLayout >
    <contents childData="${ listOfLists.one }">
    <${ ctrl:parsePage( uix, 'bottom' ) }"/>
    </contents>
    </rowLayout>
    <rowLayout >
    <contents childData="${ listOfLists.two }">
    <cellFormat xmlns="http://xmlns.oracle.com/uix/ui"
    >
    <contents>
    <text text="${ uix.current.text }"/>
    </contents>
    </cellFormat>
    </contents>
    </rowLayout>
    </contents>
    </tableLayout>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    </page>
    bottom.uix
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/ui"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <cellFormat>
    <contents>
    <text text="${'Ftesting...'} ${ uix.current.text }"/>
    </contents>
    </cellFormat>
    </content>
    </page>

  • Nested static includes

    In Weblogic 6.0 SP1, I get the following error when I have nested
              compile-time (static) includes of JSPs. It does not seem to matter what the
              included file/s contain. It seems that Weblogic JSPC does not like nested
              includes. Did not see anything in the spec to disallow nested includes, but
              I may be missing something. BTW, it compiles and runs fine in JBuilder.
              Any ideas?
              java.lang.RuntimeException: Could not parse embedded JSP code:
              weblogic.utils.ParsingException: nested TokenStreamException:
              antlr.TokenStreamException: Could not include includes/id_footer.jsp
                   at weblogic.servlet.jsp.JspLexer.parseJspCode(JspLexer.java:1116)
                   at weblogic.servlet.jsp.JspLexer.parseJspCode(JspLexer.java:1093)
                   at weblogic.servlet.jsp.JspLexer.parseJspCode(JspLexer.java:1086)
                   at weblogic.servlet.jsp.JspLexer.buildTimeInclude(JspLexer.java:864)
                   at weblogic.servlet.jsp.JspLexer.mINCLUDE_DIRECTIVE(JspLexer.java:3758)
                   at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:3531)
                   at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:1829)
                   at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1670)
                   at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1552)
                   at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:893)
                   at weblogic.servlet.jsp.JspParser.doit(JspParser.java:71)
                   at weblogic.servlet.jsp.JspParser.parse(JspParser.java:139)
                   at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:113)
                   at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:253)
                   at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:324)
                   at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:180)
                   at weblogic.servlet.jsp.JspStub.checkForReload(JspStub.java:133)
                   at
              weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:31
              0)
                   at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :208)
                   at
              weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
              l.java:157)
                   at
              org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.ja
              va:1759)
                   at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1595)
                   at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
                   at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
                   at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                   at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :213)
                   at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:1265)
                   at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :1622)
                   at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
                   at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              Thanks,
              Mitesh Mehta
              S1 Corp (http://www.s1.com)
              

    Max Stewart wrote:
    > Does this restriction also then apply when F12
    previewing in a browser ?
    F12 launches the page in a browser. Once it has done so, it
    has nothing
    to do with Dreamweaver. If you set up a testing server that's
    capable of
    handling SSI, everything should be displayed exactly the same
    as on a
    live website.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS4",
    "PHP Solutions" & "PHP Object-Oriented Solutions"
    http://foundationphp.com/

  • Oracle Application Server 10g Cloning

    Hi All,
    Could anyone please advice on How we can create a cloned copy of 10g AS(including infra DB) for DR purpose.Any document or guideline will be highly appreciated.
    Regards,

    Hi,
    </p>
    Please correct me if I am wrong, but I think cloning is fine to copy or clone a middle-tier instance. But for a copy of infrastructure DB one needs to use the chapter next to the referred one.
    </p>
    11 Staging a Test Environment from a Production Environment</p>
    Oracle® Application Server Administrator's Guide <br>
    10g Release 2 (10.1.2) <br>
    B13995-06 <br>
    </p>
    The term cloning is commonly used for copying the systems but in Oracle AS, it is for copying the middle-tier instances only. That difference is often misleading.
    </p>
    hope that helps. <br>
    syed

  • Oracle 10g OCI based application talking to an Oracle 9i database

    Hi all,
    Got a question. I have an OCI C++ application that is written using the Oracle 10g OCI includes, etc ... This of course is running on a 10g client. The client OS is actually a Windows x64 system since 10g is the only native OCI client right now for 64 bit Windows systems. So this all works fine. Now, I am communicating with an Oracle 9i database server. Is there anything wrong or invalid about this configuration ? I didn't think that there was but I was asked to confirm this, that is having an Oracle 10g client communicating with an Oracle 9i database. Our application is making very straight forward OCI calls, and we are not using any of the newer OCI calls that were introduced in 10g, just the ones that are available in 9i OCI.
    Thanks in advance,
    Nick

    Thanks for the reply.
    Actually I thought that the OCCI forum was for Object oriented OCI, so while I'm using C++, I'm not using the object oriented side of OCI, just using the normal OCI calls. Guess I should have been a little clearer in my original post.
    But my main question really concerned the version of the client and the version of the database which you answered.
    Thanks,
    Nick

  • Oracle 10g cd's

    please i want oracle 10g cd's
    if you can tell me send me to
    [email protected]

    Got these informations in OCP Oracle database 10g new features for administrators study guide :
    "In addition to the new installation features, the Oracle 10g installer includes many performance and management enhancements over 9i. Oracle 10g groups the products into separate CDs so that you need to use only one CD at a time. The following are some of the CDs that ship with
    Oracle 10g; all these are included in one DVD:
    Oracle Database 10g
    Oracle Database 10g Companion CD
    Oracle Database 10g Client
    Oracle Cluster Ready Services
    Oracle Database Documentation Library
    The installation completes in about 20 minutes and requires only one CD. The EM Webstage and Apache, which were installed with Oracle 9i, are no longer installed with the Oracle 10g database.
    Oracle 10g has a simplified software install and database creation; the disk requirement for software is now less."

  • Oracle application server 10g and fusion middleware 11

    Hi
    I am confused about architecture of application server 10g and oracle fusion middleware.
    I have installed oracle application server 10g that includes infrastructure tier ( database repository,SSO,OID,DAS,OCA) and mid tier (OC4j,forms,reports,discover,portal,wireless). Here I have totally understood the architecture of 10g application server and Installation method and sequence.
    But I could not understand oracle fusion middle ware architecture and components compared to 10g application server.
    Now I want to install the oracle fusion middle ware same as 10g application server keep in mind.
    can anybody give me high level view of oracle fusion middle ware and it's component? and also difference between 10g app server and fusion.
    how can I achieve same thing that i implemented in 10g app server with fusion?
    If somebody have architecture diagram of both 10g app server and fusion that will also help me.
    Thanks,
    Vishal

    Take a look at Page 2-1 of the
    Oracle Fusion Middleware
    Upgrade guide for oracle portal, Forms and Reports and Discoverer
    E10130-02
    it will give you an idea

  • How to chage java version in Oracle 10g

    Hi all,
    I've installed on my server the Oracle 10g that includes the JRE 1.4.2_10. So, I have another JRE installed on my server and I would like to set the Oracle to use this one. How can I do this?
    Any Help will be appreciated,
    Alcides Flach

    Are you trying to write Java stored procedures that run inside Oracle's JVM? Or are you trying to write Java code that is executed on a middle tier application server that happens to connect to an Oracle database?
    Justin

  • Oracle 9i and Oracle 10g CD's

    Oracle 9i is 3 CD's.
    Oracle 10g is only one CD.
    Why is this difference?

    Got these informations in OCP Oracle database 10g new features for administrators study guide :
    "In addition to the new installation features, the Oracle 10g installer includes many performance and management enhancements over 9i. Oracle 10g groups the products into separate CDs so that you need to use only one CD at a time. The following are some of the CDs that ship with
    Oracle 10g; all these are included in one DVD:
    Oracle Database 10g
    Oracle Database 10g Companion CD
    Oracle Database 10g Client
    Oracle Cluster Ready Services
    Oracle Database Documentation Library
    The installation completes in about 20 minutes and requires only one CD. The EM Webstage and Apache, which were installed with Oracle 9i, are no longer installed with the Oracle 10g database.
    Oracle 10g has a simplified software install and database creation; the disk requirement for software is now less."

  • I can't install Oracle Database 10g Express Edition (Universal)

    Hey hi i wish you help me.! i downloaded Oracle Database 10g Express Edition (Universal) twice and i couldn't install it because the setup wizard showed me an error.
    Error Number: 0X80040702
    Description: Failed to Load DLL: ChkPortDll2
    What should i do ?
    Edited by: user10786911 on 13-ene-2009 16:18

    user10593083 wrote:
    Trying to install Oracle 10G Express to a laptop with windows 7 Home Premium (64 bit)You have 2 challenges facing you:
    1) Oracle database 10g products (including Express) are incompatible with Windows 7
    2) Oracle database products are incompatible with any Microsoft Home product
    What help do you want us to provide when what you are using is known not to consistently work properly?

  • Free Database 10g download Question????

    Can anyone tell me if the "free" 10g download includes the spatial components of 10g. SDO_RELATE, NN, etc...... In addition, is SQL Loader included as well. Thank you very much for your time.

    Can anyone tell me if the "free" 10g download
    includes the spatial components of 10g. SDO_RELATE,
    NN, etc...... The Express Edition includes the Locator capabilities. Llocator is a subset of Spatial. The list of Spatial capabilities that are included and excluded is http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14255/sdo_locator.htm#i632018
    In addition, is SQL Loader included as well. Yes.

  • Static nested class

    Hi there.
    Im playing around with static nested classes:
    class OuterC {
         int x = 10;
         static class Nest {
              void doStuff() {
                   System.out.println("Going");
                   //System.out.println("Should be allowed print: " + x);
                   doOtherStuff();
              public void doOtherStuff() {
                   System.out.println("Doing Stuff!");
    public class Test {
         static class OtherNest {
              void arbitraryMethod() {
                   System.out.println("Going to do arbitrary stuff...");
         public static void main(String[] args) {
              OuterC.Nest n = new OuterC.Nest();
              n.doStuff();
              OtherNest on = new OtherNest();
              on.arbitraryMethod();
    }//close TestWhen I uncomment the statement to print out the instance variable x of class OuterC
    I get a "cannot access non-static..." error, which is fine. I expect that.
    But why can I run the doOtherStuff() method from the static nested class Nest?
    doOtherStuff() is after all an instance method...
    Many Thanks & regards!
    Edited by: Boeing-737 on May 29, 2008 10:27 AM
    Dont bother replying, I see the error now. The method is defined as a member within the nested
    class. Apologies, I didn't spot that. My mistake.
    Thanks.
    Edited by: Boeing-737 on May 29, 2008 10:28 AM

    From the JLS, chapter 8:
    A nested class is any class whose declaration occurs within the body of another class or interface. A top level class is a class that is not a nested class.
    This chapter discusses the common semantics of all classes-top level (?7.6) and nested (including member classes (?8.5, ?9.5), local classes (?14.3) and anonymous classes (?15.9.5)).
    So "nested" iff "not top level".From the JLS, chapter 8:
    An inner class is a nested class that is not explicitly or implicitly declared static.
    So a "static" nested class is a bit redundant, since a "non-static" nested class -- a nested class is either static or it isn't -- is more specifically referred to as an "inner class". That's my story and I'm sticking to it. :o)
    ~

Maybe you are looking for

  • Flash Player screen turns GREEN (sound is ok)

    PROBLEM #1......... On different websites when I switch to full screen mode of flash player, sometimes the full scrren turns green after a short streaming.  I would have to refresh the page, which starts the video from the beginning. This started abo

  • Error occurred while opening Adobe reader 9.4

    Hi all, Using the following silent install switch i am installing "Adobe Reader 9.4". silent install switch :  /sALL /rs /l /msi "/qb-! /norestart ALLUSERS=1 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES". but when i try to open adobe reader, i am geting f

  • Sales Document Type

    I am creating a "Credit Memo Request" sales document type, can any send me a basic setting for the kind of Sales document Type.

  • Expression Language support in Weblogic portal workshop8.1 sp5

    while i was developing the jsp pages in Weblogic portal workshop8.1 sp5, though i included jstl.jar and standard.jar in WEB-INF\lib , my jsps are not recognising expression language statements like ${initParam.name}? what might be the reason for this

  • Help with iWeb page...

    Hello out there in Cyberland... I need some assistance...My Site (which was created in iWeb 3) does not completely work in Safari but works like a charm in Chrome. My Blog Page "Projects" will load ocassionally but if you go back to it after viewing