SSI PARAM tag

We are trying to implement server side includes for our servlets, but are
          having difficulty retrieving parameters passed using the param tag. Our
          shtml code is as follows:
          <HTML>
          <BODY>
          <SERVLET NAME=NavigationServlet>
          <PARAM NAME=Path VALUE=Job>
          </SERVLET>
          </BODY>
          </HTML>
          Inside the servlet, we run the following code to try to retrieve the value
          of "Path":
          String path = req.getParameter("Path");
          This returns null. If we try to pass the path as part of the URL
          (http://hostname/weblogic/test.shtml?Job=Path), the above statement is able
          to retrieve it; it only fails when passed in the <PARAM> tag on the .shtml
          page. Any ideas?
          Dave
          

Yup! We're experiencing the exact same problem here! The only diff is our
          page code is in a .html file, and we direct *.html to SSIServlet. Here's
          the kicker: We have been doing this all through WL 4.5.1, and it WORKED
          THEN! The <PARAM> tag stopped working as of 5.1 upgrade! (Or perhaps it
          has something to do with JSDK 2.2 upgrade from 2.1, which we did
          concurrently with 5.1 upgrade)
          What's going on, and what's the solution, other than appending all our param
          name-values to the end of the servlet alias tag???
          Gene
          "David Salpeter" <[email protected]> wrote in message
          news:01bfa3bb$029b3080$4dea7bcf@7926CY570369...
          > We are trying to implement server side includes for our servlets, but are
          > having difficulty retrieving parameters passed using the param tag. Our
          > shtml code is as follows:
          >
          > <HTML>
          > <BODY>
          > <SERVLET NAME=NavigationServlet>
          > <PARAM NAME=Path VALUE=Job>
          > </SERVLET>
          > </BODY>
          > </HTML>
          >
          > Inside the servlet, we run the following code to try to retrieve the value
          > of "Path":
          >
          > String path = req.getParameter("Path");
          >
          > This returns null. If we try to pass the path as part of the URL
          > (http://hostname/weblogic/test.shtml?Job=Path), the above statement is
          able
          > to retrieve it; it only fails when passed in the <PARAM> tag on the .shtml
          > page. Any ideas?
          >
          > Dave
          

Similar Messages

  • Parsing & handling of object and param tags

    Hi all,
    I'm working on allowing people to paste certain embedded video code into a wysiwyg / html editor we've built with the help of (amongst others) javax.swing.text.html.HTMLWriter.
    I'm facing the following problem here:
    When i try to parse the <object><param></param></object> piece, it removes the <param> tags, and incorporates these in the <object> tag. For example:
    <object width="300" height="250"><param name="allowscriptaccess" value="always"></param></object>becomes:
    <object width="300" height="250" allowScriptAccess="always"></object>All param tags get converted into the object tag as String attributes. Problem with this is that the allowScriptAccess attribute is not a valid attribute of the object tag.
    Is there any way to prevent this conversion so it will retain the <param> tags?
    Thank you in advance.
    Edited by: Floxxx on Dec 28, 2009 10:16 AM

    This seems to be default behaviour in HTMLWriter, function Write().
    There it retrieves all elements with their attributes. The attributes summed up in the param tags show up as attributes for the object tag.
    Edited by: Floxxx on Dec 28, 2009 10:54 AM

  • Init-param tags and related settings?

    Hello all,
    I am completely new to all this and just recently started training for a product called ServiceCenter and was wondering how the servlet technology works in conjunction with the product.
    There are servlet tags available in the web.xml for servlet names AttachmentDownload, FileDownload, FileUpload, ImageUpload, AttachmentUpload, UniqueUpload, Attachment, Image, Messages, HtmlViewer, SCLink, NavMenu, and ThemeServlet.
    At this time I can find no documentation available for all the init-param tags and related settings along with explanations. If I can understand how this works, I'm sure I can get the appropriate info from the SC engineers.
    And when I say I'm new to this, even that is an understatement but I look forward to a looong career and learning every bit of information passed my way.
    Thanks,
    Andrew

    Sounds like 3rd party API.
    First find out the package names for all of that stuff and then google on that to find the manfacturer's website.

  • JSP Compilation problem - fmt:param tags

    Weblogic server 9.1 throws validation errors for jstl fmt:param tags. Body content is present so I'm not sure why the validation error. My code appears below :
              <fmt:message key="project.overview.archived.error"><fmt:param>${fn:escapeXml(baseAppViewBean.currentProjectName)}</fmt:param></fmt:message>
              The error is :
              The page failed validation from validator: "A body is necessary inside the "fmt:param" tag, given its attributes.".

    Found a solution to the problem. As long as there is a space between the end of the fn tag and the closing fmt:param tag, it works in 9.1. The following code works-
              This issue has been filed with BEA and will be addressed in a patch or a version after 9.2.
              <c:set var="imgAlt"><fmt:message key="document.type.508"><fmt:param>${fn:escapeXml(documentUIBean.displayString)} </fmt:param>
              </fmt:message></c:set>

  • JSTL fmt:param tag question

    <%@taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%>
    <fmt:message key="result_display">
         <fmt:param value="${resultBean.sourceNumber}"/>
         <fmt:param value="${resultBean.resultValue}"/>
    </fmt:message>
    As far as I can tell, the "value" attribute of the <fmt:param> tag is capable of taking an EL. And yet, the code above does not compile. I get the error message "According to TLD or attribute directive in tag file, attribute value does not accept any expressions". If I use the <fmt_rt:param> tag, everything works fine. Am I reading the spec wrong?

    You're not reading the spec wrong, but I think you are using the wrong version of JSTL. Are you using Tomcat 5? (Or another JSP2.0 container?)
    If so, you should be using JSTL1.1
    It has a uri of "http://java.sun.com/jsp/jstl/fmt"
    Note the extra /jsp in there.
    Tomcat 5 treats ${  } as runtime expressions. To a JSP2.0 container, they ARE runtime expressions. Thus in JSTL 1.1, the fmt:param tag does accept runtime expressions.
    In JSTL1.0 because the ${  } expressions WEREN'T understood by the container, they made the tags so as not to accept runtime expressions, and called their custom evaluator.
    You are using the 1.0 uri, which specifies that it doesn't accept runtime expressions. It is complaining that ${ } is a runtime expression - so you must be using a JSP2.0 container.
    In short: You probably have a JSP2.0 container, and should be using JSTL1.1 uri: <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
    Cheers,
    evnafets

  • [svn] 3313: Fix for SDK-16981 - @ param tag does not recognize tab character as delimiter between paramName and paramDescription

    Revision: 3313
    Author: [email protected]
    Date: 2008-09-23 10:02:50 -0700 (Tue, 23 Sep 2008)
    Log Message:
    Fix for SDK-16981 - @param tag does not recognize tab character as delimiter between paramName and paramDescription
    QA: Yes
    Doc:
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16981
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

  • Reading the PARAM tags in advance???

    Hi,
    I have just started working on GUI's in HTML using applets.
    In order to make an applets fully configured from the html though,
    the use of the PARAM tags is necessary.
    Is it possible to read in the beginning of the applet all the PARAM tags
    entered in the html document?
    Thank you for your time.

    What you could do, however, is to have one parameter that tells the names of the other parameters present, as a comma-separated list.
    <param name="parameters" value="imagelist,lang_prop_file">
    <param name="imagelist" value="images.dat">
    <param name="lang_prop_file" value="jp.prop">
    Then you can use that first parameter to make an array or vector or hastable yourself:     String s = getParameter(name);
        if ("".equals(s) || s == null) {
            System.err.println(
                "No parameter " + name + " in applet tag");
            return null;
        java.util.StringTokenizer st =
            new java.util.StringTokenizer(s, ",");
        String[] parameterNames = new String[st.countTokens()];
        for (int i = 0; i < parameterNames.length; ++i) {
            parameterNames[i] = st.nextToken();
        HashTable parameters;
        for (int j=0; j<parameterNames.length; ++j) {
            parameters.put(parameterNames[j],
                           getParameter(parameterNames[j]);

  • Applet's Param Tag

    What are uses of Param tag?
    Can I get some demo programmes which uses param tag?

    <OBJECT
    classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="500" height="350" align="baseline"
         codebase="http://java.sun.com/products/plugin/1.2.2/jinstall-1_2_2-win.cab#Version=1,2,2,0">
    <PARAM NAME="code" VALUE="psw.applets.um.UserManager.class">
    <PARAM NAME="archive" VALUE="CriJacsUm.jar">
    <PARAM NAME="codebase" VALUE=".">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.2.2">
    <PARAM NAME="ServerIP" VALUE="<%=ComDef.ServerIP%>">
    <COMMENT>
    <EMBED type="application/x-java-applet;version=1.2.2"
    width="500" height="350" align="baseline"
    code="UserManager.class" archive="CriJacsUm.jar" codebase="."
         pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html">
    <NOEMBED>
    </COMMENT></NOEMBED>
    </EMBED>
    </OBJECT>

  • String Param tag replace with Br tag

    original text:
    <P ALIGN="LEFT">sample text1</P><P ALIGN="LEFT">sample text2</P><P ALIGN="LEFT">sample text3</P>
    I need to: <br/>sample text1<br2>sample text2<br2>sample text3
    can help me

    var reg:RegExp = /\<\/?P.*?\/?\>/igm;
      var _m=messageField.htmlText//<P ALIGN="LEFT">sample text1</P><P ALIGN="LEFT">sample text2</P><P ALIGN="LEFT">sample text3</P>
      _m=_m.replace(reg, '<br/>');
    trace(_m) //  "<br/>sampletext1<br/><br/>sampletext2<br/><br/>sampletext3<br/>"
    Iam getting double breaks i need only one break.
    Re: String Param tag replace with Br tag 

  • Applet can get arbitrary objects as a param tag?

    I wonder if I can get an ViewObject(which is in Info table ) as a value of value
    attribute in applet tag. I mean an object in the infotable of jsp containing the
    applet can be a value of value attribute in applet tag.
    I have this question, since I should give a viewobject to applet when I push
    submit button in jsp containing the applet.
    Help! please~

    Hi Sam,
    Instead of point 1, can you try poin 2 to see.
    1.
    <jsp:include page="test2.jsp" flush="true">
         <jsp:param name="fname" value="FirstName"/>
         <jsp:param name="lname" value="LastName"/>
         <jsp:param name="age" value="11"/>     
    </jsp:include>
    2.
    <jsp:include page="test2.jsp?fname=FirstName&lname=LastName&age=11" flush="true"/>
    3. test2.jsp
    <%=request.getParameter("fname")%>
    <%=request.getParameter("lname")%>
    <%=request.getParameter("age")%>
    -- Paul

  • SSI PARAM problem

    I am getting null value when I call req.getParameter(arg). I saw couple of
              postings on this problem. Can someone post the solution?
              Thanks
              -Bala
              email: [email protected]
              

    http://www.weblogic.com/docs51/classdocs/API_servlet.html#ssi
              Cheers
              mbg
              In article <8h3e0a$kop$[email protected]>, [email protected]
              says...
              > I am getting null value when I call req.getParameter(arg). I saw couple of
              > postings on this problem. Can someone post the solution?
              >
              > Thanks
              > -Bala
              > email: [email protected]
              >
              >
              >
              ==================================================
              NewsGroup Rant
              ==================================================
              Rant 1.
              The less info you provide about your problem means
              the less we can help you. Try to look at the
              problem from an external perspective and provide
              all the data necessary to put your problem in
              perspective.
              

  • JavaDoc Conflicts  "Missing @param tag for....

    Has anybody seen this before? if so, what does it mean, i get it in my code, the application runs fine, but i cannot step through that part of the code, as it takes me directly to the .class file version.

    the code in which i have the conflicts in is as follows:
    //Code Start Here
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.event.*;
    public class DTree extends JPanel {
    protected DefaultMutableTreeNode rootNode;
    protected DefaultTreeModel treeModel;
    protected JTree tree;
    private Toolkit toolkit = Toolkit.getDefaultToolkit();
    public DTree() {
    rootNode = new DefaultMutableTreeNode("Enterprise");
    treeModel = new DefaultTreeModel(rootNode);
    treeModel.addTreeModelListener(new MyTreeModelListener());
    tree = new JTree(treeModel);
    tree.setEditable(true);
    tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
    tree.addTreeExpansionListener(new myTreeExpansionListner());
    tree.setShowsRootHandles(true);
    JScrollPane scrollPane = new JScrollPane(tree);
    setLayout(new GridLayout(1,0));
    add(scrollPane);
    /** Remove all nodes except the root node. */
    public void clear() {
    rootNode.removeAllChildren();
    treeModel.reload();
    /** Remove the currently selected node. */
    public void removeCurrentNode() {
    TreePath currentSelection = tree.getSelectionPath();
    if (currentSelection != null) {
    DefaultMutableTreeNode currentNode = (DefaultMutableTreeNode)
    (currentSelection.getLastPathComponent());
    MutableTreeNode parent = (MutableTreeNode)(currentNode.getParent());
    if (parent != null) {
    treeModel.removeNodeFromParent(currentNode);
    return;
    // Either there was no selection, or the root was selected.
    toolkit.beep();
    /** Add child to the currently selected node. */
    public DefaultMutableTreeNode addObject(Object child, TreePath parentPath) {
    DefaultMutableTreeNode parentNode = null;
    if (parentPath == null) {
    parentNode = rootNode;
    } else {
    parentNode = (DefaultMutableTreeNode) parentPath.getLastPathComponent();
    return addObject(parentNode, child, true);
    public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent,
    Object child, String a) {
    return addObject(parent, child, false);
    public DefaultMutableTreeNode addObject(DefaultMutableTreeNode parent,
    Object child,
    boolean shouldBeVisible) {
    DefaultMutableTreeNode childNode =
    new DefaultMutableTreeNode(child);
    if (parent == null) {
    parent = rootNode;
    treeModel.insertNodeInto(childNode, parent,
    parent.getChildCount());
    // Make sure the user can see the lovely new node.
    if (shouldBeVisible) {
    tree.scrollPathToVisible(new TreePath(childNode.getPath()));
    return childNode;
    class MyTreeModelListener implements TreeModelListener {
    public void treeNodesChanged(TreeModelEvent e) {
    DefaultMutableTreeNode node;
    node = (DefaultMutableTreeNode)
    (e.getTreePath().getLastPathComponent());
    * If the event lists children, then the changed
    * node is the child of the node we've already
    * gotten. Otherwise, the changed node and the
    * specified node are the same.
    try {
    int index = e.getChildIndices()[0];
    node = (DefaultMutableTreeNode)
    (node.getChildAt(index));
    } catch (NullPointerException exc) {}
    System.out.println("The user has finished editing the node.");
    System.out.println("New value: " + node.getUserObject());
    public void treeNodesInserted(TreeModelEvent e) {
    public void treeNodesRemoved(TreeModelEvent e) {
    public void treeStructureChanged(TreeModelEvent e) {
    class myTreeExpansionListner implements TreeExpansionListener{
    public void treeExpanded(TreeExpansionEvent e){
    public void treeCollapsed(TreeExpansionEvent e){
    //Code End Here

  • SSI appears in one page, not another

    In the home stretch on my Dreamweaver web page (thanks for
    all the help so far), I find that the SSI "call" tag that summons
    up the navbar in my index.shtml file does not work in a different
    file ("Advising1"). The navbar (in a file called "navigation.html")
    is in the same (top) directlry as index.shtml. However, when I put
    "Advising1" in the same directory as the index and navigation
    files, the navbar appears just fine in Advising1. I thought that
    putting "virtual" in the SSI tag allowed the "calling" file to find
    the "called" file in any of the folders on the web site, but I
    guess I was wrong. So:
    How do you correctly write the SSI tag so that a file may
    call an SSI file from another folder or directory?
    Here is the mockup of the web page: (click on Advising ->
    English Advising):
    http://s87217786.onlinehome.us/Englishx/
    As always, thank you in advance.

    >
    > Pretty neat trick. What does it mean?
    it's not a trick. it's html code with a WAG Wild A$$ Guess at
    the path the
    include should have.
    this has been complicated because the include contains both a
    flash .swf and
    the xaramenu crap. My next guess if i would try would be
    paths inside the
    include file should be site root relative, and there might be
    some body tag
    trigger for the .js crap.
    here's the source of the page you just uploaded,
    http://s87217786.onlinehome.us/Englishx/Advising/temp.shtml
    <body>
    <p>start one
    <div id="navigation">
    <div id="navimage">
    <object classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#version=7,0,19,0" width="160" height="160"
    title="FlashFaces">
    <param name="movie" value="Graphics/EnglishFaces.swf"
    />
    <param name="quality" value="high" />
    <embed src="Graphics/EnglishFaces.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="160"
    height="160"></embed>
    </object>
    </div>
    <div id="navbar">
    <script webstyle4>document.write('<scr'+'ipt
    src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt
    src="Graphics/navbargraphics/navgraphics.js">'+'</scr'+'ipt>');/*img
    src="Graphics/navbargraphics/NavGraphics.gif"
    moduleid="navbar
    (Project)\NavGraphics_off.xws"*/</script>
    </div>
    </div>
    end
    one
    </p>
    <p> </p>
    <p>start two <div id="navigation">
    <div id="navimage">
    <object classid="clsid
    27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#version=7,0,19,0" width="160" height="160"
    title="FlashFaces">
    <param name="movie" value="Graphics/EnglishFaces.swf"
    />
    <param name="quality" value="high" />
    <embed src="Graphics/EnglishFaces.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="160"
    height="160"></embed>
    </object>
    </div>
    <div id="navbar">
    <script webstyle4>document.write('<scr'+'ipt
    src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt
    src="Graphics/navbargraphics/navgraphics.js">'+'</scr'+'ipt>');/*img
    src="Graphics/navbargraphics/NavGraphics.gif"
    moduleid="navbar
    (Project)\NavGraphics_off.xws"*/</script>
    </div>
    </div>
    end two</p>
    <p> </p>
    <p>start
    three[an error occurred while processing this directive]
    end
    three</p>
    <p> </p>
    <p>start four[an error occurred while processing this
    directive]
    end four</p>
    </body>
    </html>
    what that means:
    the SSI include for one and two do work. Three and Four don't
    work. Since
    the site root relative path of test one works, use that:
    <!--#include virtual="/Englishx/navigation.html"-->
    That the included file doesn't display anything in subfolders
    when the ssi
    does work is another problem. And it's not my problem. You
    tired me out.
    goodbye.

  • I have multiple ID Tags on My Page, How To Correct And Change To CLASS ID's

    Hello Dreamweaver Word:
    I still have problems.
    On my website wwww.theexecutivevip.com
    My MENU BAR has moved down to the bottom of the page.
    On the various product pages [problem is seen in Internet Explorer Browser]
    I have multiple "main content" ID tags and the other ID tags that are within them.
    When I made the page, I did not make multiple ID tags, but instead I made the page into a template
    that had "Repeatable Regions" and as I repeated these regions within a page, the ID's were repeated as well.
    So now I have multiple ID's going down my page.  How do I correct them and replace them with CLASS ID's.
    I of course need to do this change on the template so it can CORRECTLY update all the pages that I built off of it.
    Will I need to change each product page manually, since they are all "editable regions" or can I just change the template. The "main content" is not an editable region, but all the product/image ID's are.
    Please advise on how I can correct the multiple ID tags to the proper tag types without ruining my work. I tried and it made a mess so I just didn't save it.
    In advance THANKS FOR ALL YOUR HELP FOLKS! I hope to be in your position soon where I can help the folks new to Dreamweaver.  I just got a book on code/html so I can learn this world of information that you guys seem to know so well.
    PLEASE ADVISE!!!
          <div id="maincontent">
            <div id="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/WebsiteSubTitle.TravelLuggage.jpg" width="408" height="114" alt="Travel Luggage" /><!-- InstanceEndEditable --></div>
            <div id="productlayout">
                <div id="product1">
                  <div id="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="611206.html"><img src="Website Images/611026.Black.Thumb.jpg" alt="Red Bag" width="115" height="125" /></a><!-- InstanceEndEditable --></div>
                  <div id="imagetext1">
                    <div>
                      <h3 align="center"><!-- InstanceBeginEditable name="ProductTitle1" --><strong>611026 <br />
                      OGIO&copy; Transporter <br />
                      Travel Garment Bag</strong><!-- InstanceEndEditable --></h3>
                    <p align="center"><!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="611206.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div id="productlayout2">
                  <div id="product2">
                    <div id="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="108226.html"><img src="Website Images/108226.Thumb.jpg" alt="Pen" width="115" height="126" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div id="imagetext2">
                      <div>
                        <div align="center">
                          <h3><!-- InstanceBeginEditable name="ProductTitle2" -->
                        <h3 align="center">108226 </h3>
                        <h3 align="center"><strong>OGIO&copy;</strong> Terminal Travel Bag</h3>
                          <!-- InstanceEndEditable --></h3>
                        </div>
                        <p align="center"><!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="108226.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div id="productlayout3">
                    <div id="product3">
                      <div id="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="109053.html"><img src="Website Images/109053.Black.Thumb.jpg" width="118" height="127" alt="Golf" /></a><!-- InstanceEndEditable --></div>
                      <div id="imagetext3">
                        <div>
                          <div align="center">
                            <h3><!-- InstanceBeginEditable name="ProductTitle3" --><strong>109053 <br />
                            OGIO&copy; Travel Bag w/Detachable Carry-on</strong><!-- InstanceEndEditable --></h3>
                            <p><!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="109053.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable --></p>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>

    Hello Murray:
    I updated my template with your corrections.  Thanks for the help.
    Everything looks GREAT in Firefox, except the only product page that is all jambled is www.theexecutivevip.com/winebarsets.html.
    I don't know where all those spaces come from. I'll copy the code below.
    In Internet Explorer,  my submenu doesn't work on the pages.  It is also still going down the page on Internet Explorer.
    Please advise.
    code for the "winebarsets" page
    <!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"><!-- InstanceBegin template="/Templates/product_template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>The Executive VIP – The Wine Connoisseur</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    body {
    margin: 0;
    padding: 0;
    color: #006;
    font-family: "Californian FB", "Poor Richard", "Trebuchet MS", Arial;
    font-size: 100%;
    line-height: 1.4;
    background-image: url(Website%20Images/Background.jpg);
    text-align: center;
    html, body {
    margin: 0px;
    padding: 0px;
    #wrapper {
    width: 960px;
    text-align: left;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    #header {
    height: 91px;
    width: 774px;
    padding-right: 15px;
    text-align: right;
    clear: right;
    float: right;
    color: #4281BA;
    font-weight: bold;
    font-size: 14px;
    #logo {
    height: 91px;
    width: 156px;
    margin-left: 15px;
    background-image: url(file:///C|/Users/ICHEVE%7E1/AppData/Local/Temp/Website%20Images/ExecutiveVIP.Logo.jpg);
    background-repeat: no-repeat;
    #flashtitle {
    height: 186px;
    width: 947px;
    padding-left: 15px;
    #navigation {
    height: 600px;
    width: 260px;
    margin-left: 15px;
    margin-top: 25px;
    #Earth {
    height: 300px;
    width: 250px;
    text-align: center;
    .ProductTitle {
    width: 408px;
    font-size: 100%;
    font-weight: bold;
    .maincontent {
    height: 450px;
    width: 667px;
    float: right;
    padding-top: 25px;
    #footer {
    height: 50px;
    margin-left: 15px;
    clear: both;
    text-align: center;
    background-repeat: no-repeat;
    background-color: #FFF;
    margin-right: 15px;
    font-weight: bold;
    padding-left: 15px;
    color: #4281BA;
    .productlayout {
    height: 300px;
    width: 220px;
    float: right;
    .product1 {
    height: 250px;
    width: 200px;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    border: 1px solid #999;
    text-align: justify;
    .product2 {
    text-align: justify;
    height: 250px;
    width: 200px;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    border: 1px solid #999;
    .product3 {
    text-align: justify;
    height: 250px;
    width: 200px;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    border: 1px solid #999;
    .productlayout2 {
    height: 300px;
    width: 220px;
    float: right;
    text-align: center;
    .productlayout3 {
    height: 300px;
    width: 220px;
    text-align: center;
    .image1 {
    width: 130px;
    margin-right: auto;
    margin-left: auto;
    .image2 {
    width: 130px;
    margin-right: auto;
    margin-left: auto;
    .image3 {
    width: 130px;
    margin-right: auto;
    margin-left: auto;
    .imagetext1 {
    width: 196px;
    padding: 2px;
    font-size: 70%;
    line-height: normal;
    margin-bottom: auto;
    .imagetext2 {
    font-size: 70%;
    padding: 2px;
    width: 198px;
    line-height: normal;
    margin-bottom: auto;
    text-align: center;
    .imagetext3 {
    font-size: 70%;
    padding: 2px;
    width: 198px;
    margin-bottom: auto;
    line-height: normal;
    #ContactSales {
    height: 25px;
    width: 200px;
    float: right;
    font-size: 12px;
    color: #4281BA;
    #copywrite {
    height: 20px;
    width: 500px;
    text-align: left;
    font-size: 12px;
    color: #4281BA;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
    #privacypolicy {
    height: 20px;
    width: 200px;
    font-size: 12px;
    color: #4281BA;
    text-align: left;
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;  /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
    color: #42413C;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
    color: #6E6C64;
    text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
    /* ~~ this fixed width container surrounds all other elements ~~ */
    .container {
    width: 960px;
    background: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
    padding: 10px 0;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    #nextpagebutton {
    height: 40px;
    width: 162px;
    margin-left: 450px;
    position: absolute;
    .titleforproducts {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #006;
    .textforfooter {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #4281BA;
    -->
    </style>
    <script src="file:///C|/Users/ICHEVE~1/AppData/Local/Temp/Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="file:///C|/Users/ICHEVE~1/AppData/Local/Temp/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="file:///C|/Users/ICHEVE~1/AppData/Local/Temp/SpryAssets/SpryEffects.js" type="text/javascript"></script>
    <style type="text/css">
    body,td,th {
    font-family: Arial, Helvetica, sans-serif;
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <script src="SpryAssets/SpryEffects.js" type="text/javascript"></script>
    <!-- InstanceEndEditable -->
    <!-- InstanceParam name="pagesubtitle" type="boolean" value="true" -->
    <!-- InstanceParam name="productlayout1" type="boolean" value="true" -->
    <!-- InstanceParam name="productlayout2" type="boolean" value="true" -->
    <!-- InstanceParam name="productlayout3" type="boolean" value="true" -->
    <!-- InstanceParam name="SubTitleDIV" type="boolean" value="true" -->
    <!-- InstanceParam name="SubtitleDIV" type="boolean" value="true" -->
    <!-- InstanceParam name="product1box" type="boolean" value="true" -->
    <!-- InstanceParam name="product3box" type="boolean" value="true" -->
    <script type="text/javascript">
    function MM_effectHighlight(targetElement, duration, startColor, endColor, restoreColor, toggle)
    Spry.Effect.DoHighlight(targetElement, {duration: duration, from: startColor, to: endColor, restoreColor: restoreColor, toggle: toggle});
    </script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <!-- InstanceBeginEditable name="bckgrndlast" -->bckgrndlast<!-- InstanceEndEditable --><!-- InstanceBeginEditable name="backgroundim" -->backgroundim<!-- InstanceEndEditable --><!-- InstanceBeginEditable name="backgroundimage" -->backgroundimage<!-- InstanceEndEditable --><!-- InstanceBeginEditable name="background" -->background<!-- InstanceEndEditable -->
    <div class="container">
      <div class="content">
        <div id="wrapper"><!-- InstanceBeginEditable name="HeaderID" -->
          <div id="header">Join Our Community Today</div>
        <!-- InstanceEndEditable -->
          <div id="logo"><a href="http://www.theexecutivevip.com"><img src="Website Images/ExecutiveVIP.Logo.jpg" width="153" height="87" alt="Back To Home Page" /></a></div>
          <!-- InstanceBeginEditable name="FlashTitle" -->
          <div id="flashtitle">
            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="932" height="186" id="FlashID" title="VIP Title">
              <param name="movie" value="WineConnoisHeader.swf" />
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.0" />
              <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
              <param name="expressinstall" value="file:///C|/Users/iCheveux Group/Desktop/Website Folder/Scripts/expressInstall.swf" />
              <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
              <!--[if !IE]>-->
              <object type="application/x-shockwave-flash" data="WineConnoisHeader.swf" width="932" height="186">
                <!--<![endif]-->
                <param name="quality" value="high" />
                <param name="wmode" value="opaque" />
                <param name="swfversion" value="6.0.65.0" />
                <param name="expressinstall" value="file:///C|/Users/iCheveux Group/Desktop/Website Folder/Scripts/expressInstall.swf" />
                <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                <div>
                  <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                  <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                </div>
                <!--[if !IE]>-->
              </object>
              <!--<![endif]-->
            </object>
          </div>
          <!-- InstanceEndEditable --><!-- InstanceBeginRepeat name="productgroup" --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/WebsiteSubTitle.WineCases.jpg" width="408" height="114" alt="Wine Cases" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="EH3515.html"><img src="Website Images/EH3515.Thumb.jpg" alt="EH3515" width="130" height="118" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">EH3515
                      GioiaDouble
                      Wine Holder</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" -->
                    <a href="EH3515.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="EH3500.html"><img src="Website Images/EH3500.Thumb.jpg" alt="EH3500" width="115" height="127" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
                        <h3 align="center" class="titleforproducts">EH3500 </h3>
                        <h3 align="center" class="titleforproducts">Portelli Leather Double Wine Case</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" -->
                          <a href="EH3500.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="LG9102.html"><img src="Website Images/LG-9102.Thumb.jpg" alt="LG-9102" width="119" height="128" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">LG-9102 <br />
                            <br />
                            Upper West Side <br />
                            Single Wine Case</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" -->
                            <a href="LG9102.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/Blank.jpg" width="408" height="120" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="557-65-113.html"><img src="Website Images/557-65-113.ArubaCabana.Thumb.jpg" alt="557-65-1113" width="116" height="128" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">557-65-113 <br />
                      <br />
                      Aruba Single-Bottle <br />
                      Wine Case</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="557-65-113.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="LG9099.html"><img src="Website Images/LG-9099.Thumb.jpg" alt="LG-9099" width="118" height="127" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
                        <h3 align="center" class="titleforproducts">LG-9099</h3>
                        <h3 align="center" class="titleforproducts">Champagne/Wine Holder</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="LG9099.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="LG9158.html"><img src="Website Images/LG-9158.Thumb.jpg" alt="LG-9158" width="119" height="128" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">LG-9158 <br />
                            <br />
                            Upper West Side <br />
                            Double Wine Case</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="LG9158.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/Blank.jpg" width="408" height="120" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="66897.html"><img src="Website Images/Large.668-97.Encore.WineCase.Thumb.jpg" alt="668-97" width="114" height="128" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">668-97 <br />
                      <br />
                      Encore Insulated <br />
                      Single Bottle Case</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="66897.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="66743.html"><img src="Website Images/Large.667-43.Manhattan.WineCase.Thumb.jpg" alt="667-43" width="113" height="126" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
            <h3 align="center" class="titleforproducts">667-43 </h3>
            <h3 align="center" class="titleforproducts">Manhattan Two-Bottle Cocktail Case</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="66743.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="67365133.html"><img src="Website Images/Large.673-65-133.Escape.WineCase.Thumb.jpg" alt="673-65-133" width="114" height="128" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">673-65-133<br />
                            <br />
                            Escape Insulated <br />
                            Wine Case</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="67365133.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/WebsiteSubTitle.OutdoorDining.jpg" width="408" height="114" alt="Outdoor Dining" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="611701.html"><img src="Website Images/611701.RedOpen.Thumb.jpg" alt="611701" width="116" height="128" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">611701 <br />
                      <br />
                      Pulley Cooler <br />
                      w/Pullman Handle</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="611701.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="GR4901.html"><img src="Website Images/GR4901.Thumb.jpg" alt="GR4901" width="125" height="117" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
                        <h3 align="center" class="titleforproducts">GR4901 </h3>
                        <h3 align="center" class="titleforproducts">Glacier 2-Person Picnic Set</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="GR4901.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="GR4900.html"><img src="Website Images/GR4900.thumb.jpg" width="117" height="127" alt="GR4900" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">GR4900 <br />
                            <br />
                            Ranier 4-Person <br />
                            Picnic Set</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="GR4900.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/Blank.jpg" width="408" height="120" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="75000175.html"><img src="Website Images/Large.750-00-175.Buccaneer.Tailgate.Thumb.jpg" alt="750-00-175" width="118" height="129" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">750-00-175 <br />
                      <br />
                      Buccaneer Tailgating Charcoal Grill/Cooler</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="75000175.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="77085175.html"><img src="Website Images/Large.770-85-175.VulcanWithTrolley.Thumb.jpg" alt="770-85-175" width="112" height="127" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
                <h3 align="center" class="titleforproducts">770-85-175</h3>
                <h3 align="center" class="titleforproducts">Vulcan Tailgating Grill/Cooler With Trolley</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="77085175.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="77000175.html"><img src="Website Images/Large.770-00-175.Vulcan.Thumb.jpg" alt="770-00-175" width="111" height="130" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">770-00-175 <br />
                            <br />
                            Vulcan Tailgating <br />
                            Gas Grill/Cooler</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="77000175.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/WebsiteSubTitle.WineBarSets.jpg" width="408" height="114" alt="Wine &amp; Bar Sets" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="EH3313.html"><img src="Website Images/EH3313.Thumb.jpg" alt="EH3313" width="130" height="118" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">EH3313 <br />
                      <br />
                      Attache  <br />
                      Martini Set</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="EH3313.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="EH3319.html"><img src="Website Images/EH3319.Thumb.jpg" alt="EH3319" width="131" height="118" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
      <h3 align="center" class="titleforproducts">EH3319 </h3>
      <h3 align="center" class="titleforproducts">Frasco Wine/Bar Set</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="EH3319.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="EH3309.html"><img src="Website Images/EH3309.thumb.jpg" alt="EH3309" width="114" height="128" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">EH3309 <br />
                            <br />
                            Colta II <br />
                            Wine/Bar Set</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="EH3309.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/Blank.jpg" width="408" height="120" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="68904.html"><img src="Website Images/Large.868-00-113.WineTools.Thumb.jpg" alt="689-04" width="116" height="131" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">689-04 <br />
                      <br />
                      Metro 4-Piece <br />
                      Wine Tools</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="68904.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="CPP2027.html"><img src="Website Images/CPP-2027.Thumb.jpg" alt="CPP-2027" width="118" height="125" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" --><span class="titleforproducts">CPP-2027 <br />
                          <br />
                          Charming Wine <br />
                          Gift Set </span><!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="CPP2027.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="PL7705.html"><img src="Website Images/PL-7705.Thumb.jpg" alt="PL-7705" width="113" height="124" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">PL-7705 <br />
                            <br />
                            Rosewood Wine <br />
                            Gift Set</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="PL7705.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceBeginRepeatEntry -->
          <div class="maincontent">
            <div class="ProductTitle"><!-- InstanceBeginEditable name="PageSubTitleID" --><img src="Website Images/Blank.jpg" width="408" height="120" /><!-- InstanceEndEditable --></div>
            <div class="productlayout">
                <div class="product1">
                  <div class="image1"><!-- InstanceBeginEditable name="ProductImage1" --><a href="86313504.html"><img src="Website Images/Large.863-13-504.Celebration.WineSet.Thumb.jpg" alt="863-13-504" width="116" height="125" /></a><!-- InstanceEndEditable --></div>
                  <div class="imagetext1">
                    <div>
                      <!-- InstanceBeginEditable name="ProductTitle1" --><strong class="titleforproducts">863-13-504 <br />
                      <br />
                      Celebration <br />
                      Wine Set</strong><!-- InstanceEndEditable -->
                      <!-- InstanceBeginEditable name="ProductDetailButton1" --><a href="86313504.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                                  </div>
                    <p> </p>
                  </div>
                  <p> </p>
                </div>
              </div>
                <div class="productlayout2">
                  <div class="product2">
                    <div class="image2"><!-- InstanceBeginEditable name="ProductImage2" --><a href="88100504.html"><img src="Website Images/Large.881-00-504.Chablis.WineSet.Thumb.jpg" alt="881-00-504" width="112" height="106" border="0" /></a><!-- InstanceEndEditable --></div>
                    <div class="imagetext2">
                      <div>
                        <div align="center">
                          <!-- InstanceBeginEditable name="ProductTitle2" -->
              <h3 align="center" class="titleforproducts">881-00-504</h3>
              <h3 align="center" class="titleforproducts"> </h3>
              <h3 align="center" class="titleforproducts">Chablis Wine Set</h3>
                          <!-- InstanceEndEditable -->
                        </div>
                        <!-- InstanceBeginEditable name="ProductDetailButton2" --><a href="88100504.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->                   
                      </div>
                    </div>
                  </div>
                </div>
                  <div class="productlayout3">
                    <div class="product3">
                      <div class="image3"><!-- InstanceBeginEditable name="ProductImage3" --><a href="88500179.html"><img src="Website Images/Large.885-00-179.Chaianti.WineSet.Thumb.jpg" alt="888-00-179" width="117" height="126" /></a><!-- InstanceEndEditable --></div>
                      <div class="imagetext3">
                        <div>
                          <div align="center">
                            <!-- InstanceBeginEditable name="ProductTitle3" --><strong class="titleforproducts">888-00-179 <br />
                            <br />
                            Grenache Black <br />
                            Wine Set</strong><!-- InstanceEndEditable -->
                            <!-- InstanceBeginEditable name="ProductDetailButton3" --><a href="88500179.html"><img src="Website Images/ProductDetail.Button.jpg" width="97" height="30" alt="Product Detail" /></a><!-- InstanceEndEditable -->
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
            <div class="productlayout4"></div>
            <div class="productlayout5"></div>
            <div class="productlayout6">
              <div class="product6"></div>
            </div>
          </div>
          <!-- InstanceEndRepeatEntry --><!-- InstanceEndRepeat -->
          <div id="navigation">
            <ul id="MenuBar1" class="MenuBarVertical">
              <li><a href="index.html" title="The Executive VIP">Home</a></li>
              <li><a href="aboutus.html" title="Extend Your Brand">Extend Yor Brand</a></li>
              <li><a class="MenuBarItemSubmenu" href="#">For The VIP</a>
                <ul>
                  <li><a href="winebarsets.html" title="The Wine Connoisseur">The Wine Connoisseur</a></li>
                  <li><a href="confections.html" title="Gourmet Confections">Gourmet Confections</a></li>
                  <li><a href="madeforipadiphone.html" title="Made for iPad &amp; iPhone">Made for iPad &amp; iPhone</a></li>
                  <li><a href="viplounge.html" title="The VIP Lounge">The VIP Lounge</a></li>
                  <li><a href="laptopaccessories.html" title="Laptop Accessories">Laptop Accessories</a></li>
                  <li><a href="clocks.html" title="Clocks">Clocks</a></li>
                  <li><a href="finetimepieces.html" title="Fine Timepieces">Fine Timepieces</a></li>
                </ul>
              </li>
              <li><a href="#" class="MenuBarItemSubmenu">Bags &amp; Luggage</a>
                <ul>
                  <li><a href="checkpointlaptopbags.html" title="Checkpoint Friendly Laptop Bags">Checkpoint Friendly Laptop Bags</a></li>
                  <li><a href="travelluggage.html" title="Business Travel Luggage">Business Travel Luggage</a></li>
                  <li><a href="theladytraveler.html" title="The Lady Traveler">The Lady Traveler</a></li>
                  <li><a href="travelaccessories.html" title="Travel Accessories">Travel Accessories</a></li>
                  <li><a href="golf.html" title="The Golf Enthusiast">The Golf Enthusiast</a></li>
                  <li><a href="organizationfitness.html" title="Professional Organization &amp; Fitness">Professional Organization &amp; Fitness</a></li>
                </ul>
              </li>
              <li><a href="#" class="MenuBarItemSubmenu">Brand Promotions</a>
                <ul>
                  <li><a href="promotional.html" title="Promotional Products">Promotional Products</a></li>
                  <li><a href="writinginstruments.html" title="Writing Instruments">Writing Instruments</a></li>
                  <li><a href="drinkware.html" title="Drinkware">Drinkware</a></li>
                </ul>
              </li>
              <li><a href="vipdiscussion.html" title="The VIP Discussion">The VIP Discussion</a></li>
              <li><a href="purchase.html" title="How To Purchase">How To Purchase</a></li>
              <li><a href="contactus.html" title="Contact Us">Contact Us</a></li>
            </ul><!-- InstanceBeginEditable name="earthornament" -->
            <div id="Earth"><em><img src="Website Images/Earth Ornament.jpg" width="201" height="289" alt="Earth" /></em></div>
            <!-- InstanceEndEditable -->       
          </div>
          <div id="footer"><!-- InstanceBeginEditable name="nextpagebutton" -->
            <div id="nextpagebutton"></div>
          <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="copywriteID" -->
            <div id="copywrite">&copy; iCheveux 2011</div>
          <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="privacypolicy" -->
            <div id="privacypolicy">Our Privacy Policy</div>
            <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="contactphone" -->
            <div id="ContactSales"><strong>Contact Sales: 1-877-436-9857</strong></div>
            <!-- InstanceEndEditable --></div>
        </div>
        <!-- end .content --></div>
      <!-- end .container --></div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", {imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>

  • [HELP] using multiple value parameter in c:import tag

    I need to pass a multi-value parameter to a included page. e.g.
    http://myhost/MyContext/dir1/page1.jsp?abc=value1&abc=value2/dir1/page1.jsp includes /dir2/page2.jsp, and would like to pass this multi-value parameter over, but change the name to xyz, some what like
    <c:import url="/dir2/page2.jsp?xyz=value1&xyz=value2"/>The problem is that the number of values is not fix number, so I have to write some logic to iterate thru its parameter values. But the <c:import> tag body allows only simple listed <c:param> tags, it doesn't allow other logic/condition/iteration.
    <!-- gives java.io.IOException: javax.servlet.jsp.JspException: The taglib validator rejected the page: "Illegal child tag in "c_rt:import" tag: "c:forEach" tag at runtime -->
    <c:import url="/dir2/page2.jsp">
    <c:forEach var="xyz" items="${paramValues.abc}">
    <c:param name="xyz" value="${xyz}"/>
    </c:forEach>
    </c:import>{code}
    I also tried <c:url> tag. The good news is that it supports jsp logic in body:
    {code}<c:url var="url" value="/dir2/page2.jsp">
    <c:forEach var="xyz" items="${paramValues.abc}">
    <c:param name="xyz" value="${xyz}"/>
    </c:forEach>
    </c:url>
    <c:out value="${url}"/>{code}but it prefixes the url with the current context:
    {code}/MyContext/dir2/page2.jsp?xyz=value1&xyz=value2{code}
    Now I run into a dead end. It seems the only way out is to use <% %> scriptlet to do my own url composite, which is pretty similar to <c:url> but avoid the context part.
    Any suggestion?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    out.println("<html>");
    out.println("<head>");
    out.println("<script language=\"JavaScript\">");
    out.println("function altSubmit() {");
    out.println("document.MyForm.action = \"Second.html\";");
    out.println("document.MyForm.submit();");
    out.println("}");
    out.println("</script>");
    out.println("</head>");
    out.println("<body>");
    My personal suggestion is to use follow the MVC (Model View Control) pattern where in you can write all your "html" part in a JSP.
    Model -> Bean
    View -> JSP
    Control -> Servlet

Maybe you are looking for