Click on jsp page Display records on another html page

Hi All,
I am new in jsp. I am making discussion forum. I have one jsp page "Post.jsp" I want when I clicked on submit button on jsp page all records display on html page "index.html". Plz. help me.
Raj

I have a html page (index.jsp) and a jsp pages (post.jsp) in Post.jsp page three fields: Id, Sub, message and submit button.
I want when i click on submit button of post.jsp page then store in database and display these records on index.html.

Similar Messages

  • How to Display Record Count on Search page?

    Hi
    I am new to OAF and one of the requirement is to display record count on Search page . I followed the same steps in Emp Search page as an example and created my search page.
    I followed the following steps
    1) I created a transietn Attribute in VO by name RecordCount
    2) I had written a method in AMImpl
    public void getRecordCount() {
    OAViewObject vo = getXXG2SourceAcctSearchVO1();
    int fetchedRowCount = vo.getFetchedRowCount();
    String msg = fetchedRowCount + " are retrived by query ";
    System.out.println(msg);
    String xfetchedRowCount = Integer.toString(fetchedRowCount);
    System.out.println("xfetchedRowCount : " + xfetchedRowCount);
    OARow reportRow = (OARow)vo.createRow();
    System.out.println("in set attribute");
    reportRow.setAttribute("RecordCount",xfetchedRowCount); // I am using this way and trying to display record count into RecordCount view Attribute
    }//getRecordCount
    3) on the SearchPG, I created a new messageStyledtext by name RecordCount and assinged VO and viewAttribute accordingly
    I am not able to see record count when i run the page ?
    Am i missing any steps ?
    I see the messages in the log file but not in Record count box ?
    Any suggestions?
    Thanks
    Ravi

    Hi Anoop
    i made the code change according to you and because of the following condition, it is createing a" new row" in the search page
    Row row = vo.createRow();
    vo.insertRow(row);
    For every search it is creating a new blank row in search page .
    I did some more research and modified my code as
    public void getRecordCount() {
    OAViewObject vo = getXXG2SourceAcctSearchVO1();
    int fetchedRowCount = 0;
    fetchedRowCount = vo.getFetchedRowCount();
    String msg = fetchedRowCount + " are retrived by query ";
    System.out.println(msg);
    //vo.setMaxFetchSize(0);
    //vo.executeQuery();
    if (fetchedRowCount == 0 )
    Row row = vo.createRow();
    //row = (OARow)vo.first();
    row.setAttribute("RecordCount", "0");
    else
    String xfetchedRowCount = Integer.toString(fetchedRowCount);
    System.out.println("xfetchedRowCount : " + xfetchedRowCount);
    Row row = vo.createRow();
    //vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    // Set the primary key value for this single-row VO.
    row = (OARow)vo.first();
    row.setAttribute("RecordCount", xfetchedRowCount);
    and in AM , I am calling this method in PFR as follows
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am1 =
    (OAApplicationModule)pageContext.getApplicationModule(webBean);
    am1.invokeMethod("getRecordCount");
    now i see the record count on the search page . but after 2-3 searches, the record count value is not populating the correct value. its weird
    Any suggestions
    Thanks
    Ravi

  • No Page Displayed in the window (HTML)  when a WItem is Executed from Email

    Hi Workflow Masters!
    I have a problem regarding my Email Notification regarding SWNCONFIG.
    When a wokitem received thru Email (Lotus) is Executed, a Window opens and <i>supposedly</i>, the workitem will be displayed. However, there is no page displayed in the window (html) for execution.
    I haven't configured yet a Universal Worklist for my SWNCONFIG. Am I right that I have to configure a UWL or is there any other option where a workitem is Displayed and could be executed?
    Please send me a link about UWL or other solution.
    We are on Ecc6 and I used SWNCONFIG for the extended notification thru SWN_SELSEN report.
    Please share some words on my issue.
    Thanks for the help.

    Well, the UWL is not 100% necessary.
    But let's start from basics. This all depends on what kind of application is supposed to open, when you click the item. What happens if you click the item in Business Workplace? Is there some web based application (web dynpro?), or is there just a normal SAP transaction?
    In the extended notification configuration you can define that "where" the application should start. For example if you have a web dynpro application, you can define the host of web dynpro in SWNCONFIG (I think that it was in the general settings). Or if it is a transaction, you could open the transaction in webgui.
    Another option is that you remove the links from the mail (if you don't get them working). This is also possible, just configure it in SWNCONFIG or SWNADMIN. For example you can modify the text of the mail to "You have new work items in Business workplace, please go there and process the items...", and no links in mail. => The users are just informed to process their items, but they cannot do it directly from the mail. Of course this is not that  cool...

  • Can I call a .htm page of view1 from another .htm page of view 2?

    Hi,
    I have a viewset QuestionnaireTabVS with a view area TABS which has two views  QuestionCondnsVS (default) and View QuestionRisksVS.
    When a variable say GV_TAB  is set as 'Questions' it navigates to the QuestionCondnsVS view and when the variable GV_TAB is set as 'Risks' it navigates to the QuestionnaireRisksVS.
    This view set QuestionnaireTabVS is contained in an overview page which  has two Radiobuttons. It works fine when  the first radiobutton is selected, i.e, when I click on the Questions it renders the QuestionCondnsVS view and when I click on the Risks it renders me the QuestionRisksVS view .
    Problem is when  I had clicked the RISK tab first and then selected the another radiobutton the rendered view QuestionRisksVS doesnt get removed
    but is present there by default which I dont want.I want the QuestionCondnsVS view to be present there by default after the second radiobutton is selected. I tried to refresh all the controllers but somehow it navigates to the  QuestionRisksVS only .
    So i thought to call the  .htm page of QuestionCondnsVS forcefully from the QuestionnaireTabVS .htm page as soon as I select the another radiobutton.
    Can I call a .htm page of QuestionCondnsVS from another .htm page of  QuestionnaireTabVS? If yes then how or any other suggestion is welcome

    Hi Dharmakasi,
    The Radiobuttons code is not added in the same HTML page but lies in a different component where the coding is on event handler.
    METHOD eh_onchecked.
      DATA: lv_option TYPE REF TO if_bol_bo_property_access,
            lv_check  TYPE char1.
      lv_option ?= typed_context->switch->collection_wrapper->get_current( ).
      lv_check = lv_option->get_property_as_string( iv_attr_name = 'OPTION'   ).
      IF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_old.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_old.
      ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_new.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_new.
      ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_scaf.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_scaf.
        ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_scaf_anz.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_scaf_anz.
      ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_sow.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_sow.
      ENDIF.
    ENDMETHOD.
    Here the LV_CHECK = old is the first radiobutton whereas LV_CHECk = new is the second radiobutton. I have tried to set the value of gv_tab ='Question' here but again no success.
    The .HTM coding of QuestionanireTABVS is
    <%@page language="abap" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="bsp" prefix="bsp" %>
    <% data: ls_line                type CRMT_THTMLB_LINK,
             lv_flag                type ABAP_BOOL.
        data: lv_xml                type string.
    if zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_old.
       REFRESH controller->gt_navlink_tab[].
    *   if controller->gt_navlink_tab[] is initial.
         ls_line-id = 'Questions'.
         ls_line-onclick = 'QUEST'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/QUESTIONS' ).
         insert ls_line into table controller->gt_navlink_tab.
         ls_line-id = 'Risks'.
         ls_line-onclick = 'RISK'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/GLOBAL_RISK' ).
         insert ls_line into table controller->gt_navlink_tab.
         %>
    <%--   endif.  %>--%>
    <thtmlb:tray id     = "HeaderExt"
                 indent = 'FALSE'
                 design = 'STANDARD'>
      <thtmlb:trayHeader>
        <thtmlb:grid cellSpacing = "0"
                 columnSize  = "1"
                 height      = "100%"
                 rowSize     = "1"
                 width       = "100%" >
          <thtmlb:gridCell colSpan     = "1"
                       columnIndex = "1"
                       rowIndex    = "1"
                       rowSpan     = "1"
                       >
            <thtmlb:navLink links  = "<%= controller->gt_navlink_tab %>"
                    selectedLinkId = "<%= controller->gv_tab %>" />
        <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'TABS' ) %>"
                  url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'TABS' ) %>" />
          </thtmlb:gridCell>
        </thtmlb:grid>
      </thtmlb:trayHeader>
      <thtmlb:trayBody>
        <%
    *    data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
        %>
        <chtmlb:config xml     = "<%= lv_xml %>"
                       mode    = "RUNTIME"  />
      </thtmlb:trayBody>
    </thtmlb:tray>
    <% elseif zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_new.
       REFRESH controller->gt_navlink_tab[].
    *   if controller->gt_navlink_tab[] is initial.
         ls_line-id = 'Questions'.
         ls_line-onclick = 'QUEST'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/QUESTIONS' ).
         insert ls_line into table controller->gt_navlink_tab.
    *     ls_line-id = 'Risks'.
    *     ls_line-onclick = 'RISK'.
    *     ls_line-text = page->otr_trim( 'ZGAF_CRM_70/GLOBAL_RISK' ).
    *     insert ls_line into table controller->gt_navlink_tab.
         %>
    <%--   endif.  %>--%>
    <thtmlb:tray id     = "HeaderExt"
                 indent = 'FALSE'
                 design = 'STANDARD'>
      <thtmlb:trayHeader>
        <thtmlb:grid cellSpacing = "0"
                 columnSize  = "1"
                 height      = "100%"
                 rowSize     = "1"
                 width       = "100%" >
          <thtmlb:gridCell colSpan     = "1"
                       columnIndex = "1"
                       rowIndex    = "1"
                       rowSpan     = "1"
                       >
            <thtmlb:navLink links  = "<%= controller->gt_navlink_tab %>"
                    selectedLinkId = "<%= controller->gv_tab %>" />
        <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'TABS' ) %>"
                  url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'TABS' ) %>" />
          </thtmlb:gridCell>
        </thtmlb:grid>
      </thtmlb:trayHeader>
      <thtmlb:trayBody>
        <%
    *    data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
        %>
        <chtmlb:config xml     = "<%= lv_xml %>"
                       mode    = "RUNTIME"  />
      </thtmlb:trayBody>
    </thtmlb:tray>
    <% elseif zcl_gaf_adm_toolbox=>gv_matrix_mnt_type EQ zcl_gaf_adm_toolbox=>GV_MATRIX_MNT_TYPE_SCAF or
              zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_scaf_anz  or
              zcl_gaf_adm_toolbox=>gv_matrix_mnt_type EQ zcl_gaf_adm_toolbox=>GV_MATRIX_MNT_TYPE_SOW.
       REFRESH controller->gt_navlink_tab[].
    *   if controller->gt_navlink_tab[] is initial.
         ls_line-id = 'Questions'.
         ls_line-onclick = 'QUEST'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/QUESTIONS' ).
         insert ls_line into table controller->gt_navlink_tab.
    *     ls_line-id = 'Risks'.
    *     ls_line-onclick = 'RISK'.
    *     ls_line-text = page->otr_trim( 'ZGAF_CRM_70/GLOBAL_RISK' ).
    *     insert ls_line into table controller->gt_navlink_tab.
         %>
    <%--   endif.  %>--%>
    <thtmlb:tray id     = "HeaderExt"
                 indent = 'FALSE'
                 design = 'STANDARD'>
      <thtmlb:trayHeader>
        <thtmlb:grid cellSpacing = "0"
                 columnSize  = "1"
                 height      = "100%"
                 rowSize     = "1"
                 width       = "100%" >
          <thtmlb:gridCell colSpan     = "1"
                       columnIndex = "1"
                       rowIndex    = "1"
                       rowSpan     = "1"
                       >
            <thtmlb:navLink links  = "<%= controller->gt_navlink_tab %>"
                    selectedLinkId = "<%= controller->gv_tab %>" />
        <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'TABS' ) %>"
                  url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'TABS' ) %>" />
          </thtmlb:gridCell>
        </thtmlb:grid>
      </thtmlb:trayHeader>
      <thtmlb:trayBody>
        <%
    *    data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
        %>
        <chtmlb:config xml     = "<%= lv_xml %>"
                       mode    = "RUNTIME"  />
      </thtmlb:trayBody>
    </thtmlb:tray>
    <% endif.
    %>

  • Include a html page in another html page

    How do I include a html page in another html page? I have 7
    separate page making up a website. I made a separate page for the
    bottom navigation which I want to include for each page. Instead of
    making up a separate nav bar for each page.
    Thanks for your time.
    Todd Dignan

    Just remember that the file being included CANNOT be a
    stand-alone HTML
    page - it must not contain <html>, <head>, or
    <body> tags if you want to
    continue working within DW.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "nX07" <[email protected]> wrote in message
    news:fm9pvr$rn6$[email protected]..
    > Hey Todd,
    >
    > Depending on your web site's server environment, you can
    do it a few ways.
    >
    > First, and most convenient is if the server you are on
    has PHP, the simple
    > php
    > include function will do the trick.
    >
    > Just place this in where the HTML would actually go for
    the footer
    >
    > <?php include("fileofthebottom.html"); ?>
    >
    > If you don't have PHP, you should be able to use SSI
    (Server Side
    > Includes).
    > same principle applies as above, and is simple to
    understand:
    >
    > <!--#include file="fileofthebottom.html" -->
    >
    > If for some reason you can't do SSI, the other option
    would to be using a
    > frame or iframe, which is not recommended for several
    reasons; mainly
    > accessibility.
    >
    > The simple code is:
    > <iframe src ="fileofthebottom.html"width="whatever"
    > height="whatever"></iframe>
    >
    > Hope this helps :)
    >
    >
    >

  • Passing to an another HTML page after animation finished

    My question in english:
    Hello, good morning,
    I have created a Flash animation with Flash 8 and I have exported it in HTML format.
    I would like that at the finishing animation, there is an automatical transfer to another HTML page of my choice (for example after xxx seconds), like we could see in the web (redirection in fact). I would have also the possibilty to put an "Skip Intro" link in the animation page for people that don't want wait the final of animation.
    How make this operation with Flash 8 directly or I must write an HTML code in it to this operation.
    Thanks a lot for your answer and helping
    Ma question en français:
    Bonjour,
    J'ai créé une animation Flash avec Flash 8 et je l'ai exporté au format HTML. Je voudrais qu'à l'issue de l'animation, à la fin de cette animation, il y ait passage automatique (au bout de x secondes par exemple) à la page web de mon choix (une redirection en quelque sorte). J'aurais la possibilité dans la page contenant l'animation de mettre un lien "Skip intro" pour les internautes qui ne voudraient pas attendre la fin de l'animation pour consulter mon site web.
    Comment faire pour faire cette manipulation, est-ce possible directement dans la création de ma page en Flash ou dois-je mettre un bout de code HTML pour que cette transition se réalise?
    En vous remerciant pour votre réponse et votre aide.

    It depends on which version of Actionscript your file is using.
    For an AS2 file you use getURL() to link to a web page.  You could use the setTimeout() function to delay triggering the getURL() call.
    For AS3 you use navigateToURL() to link to a web page.  You could use the setTimeout() function or the Timer class to delay triggering the navigateToURL() call.
    In both cases you could place the call to the linking function inside another function that you call either using the delayed calls of the functions mentioned, or using a button to call the function for the skip intro.

  • HAVE ONE WEB PAGE OPEN AND SUDDENLY ANOTHER WEB PAGE OPENS

    I can have one web page open and suddenly another web page will pop up. Why? It doesn't happen all the time. Like I said suddenly.

    Another thing you can try doing is scanning for Malware:
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]
    Download and Run TDSSKiller [http://support.kaspersky.com/faq/?qid=208283363 http://support.kaspersky.com/faq/?qid=208283363]
    Download and Install Microsoft Security Essentials [http://windows.microsoft.com/en-US/windows/products/security-essentials http://windows.microsoft.com/en-US/windows/products/security-essentials] (not an official endorsement, but I personally recommend MSE as an awesome permanent anti-virus)
    Double check for all Windows Updates.
    What is the website that opens up? Is it always the same, always different, one of a few, etc?

  • Linked css page not showing next to html page

    i am not seeing the linked css page icon next to the html page icon unless i physically open the css file

    Are you working within a Defined Local Site folder?
    Part 03 - Setting up a Local Site | Classroom: Basic Site Layout and Navigation in Dreamweaver | Adobe TV
    Is your CSS file inside your Local Site folder?
    Are you sure your external CSS file is linked with the correct file path?  For example, if working with new pages, you must save & name the page first.  Then DW will update paths to external files for you.
    Nancy O.

  • Display records as tiles on page

    Hi to everyone, I need you help again.
    I m having a datacontrol consisting of blob column consisting of images, when query result should display only images as tiles on page, facing problem of how to display them as tiles in page (ike google image search). pls share info or sample example !
    Thanks.

    yeah now im able to display image as thumbnails but i got another problem , for every thumbnail i have included a link when clicked it will display a popup, nut im unable to dispaly the data(table record as form type) in the popup dialog .
    jspx code:
    <af:popup id="p1" partialTriggers="cl1" contentDelivery="lazy"
    rendered="true">
    <af:dialog id="d2">
    <af:panelLabelAndMessage label="location" id="plam1">
    <af:outputText value="#{bindings.PropertyVO2.children[stat.index].PropLocation}"
    id="ot3"/>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="Address" id="plam2">
    <af:outputText value="#{bindings.PropertyVO2.children[stat.index].PropAddress}"
    id="ot4"/>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="type" id="plam3">
    <af:outputText value="#{bindings.PropertyVO2.children[stat.index].PropType.attributeValue}"
    id="ot5"/>
    </af:panelLabelAndMessage>
    <af:panelLabelAndMessage label="Price" id="plam4">
    <af:outputText value="#{bindings.PropertyVO2.children[stat.index].PropPrice}"
    id="ot6"/>
    </af:panelLabelAndMessage>
    </af:dialog>
    </af:popup>
    <h:panelGrid columns="3" cellpadding="15" cellspacing="15"
    style="text-align: center;" rowClasses="bottomAlign">
    <af:forEach varStatus="stat" begin="0" end="19"
    items="#{bindings.PropertyVO2.allRowsInRange}">
    <af:panelGroupLayout layout="horizontal" halign="center" id="pgl20"
    inlineStyle="padding:5.0px;">
    <af:panelBox id="pb2" background="light" showHeader="never"
    type="default">
    <af:image clientComponent="true"
    source="/imageservlet?id=#{bindings.PropertyVO2.children[stat.index].PropId}"
    id="prodimage"
    inlineStyle="width:320px; height:240.0px;">
    <af:clientAttribute name="PropId"
    value="#{bindings.PropertyVO2.children[stat.index].PropId}"/>
    <af:attributeDragSource attribute="PropId"/>
    </af:image>
    <af:commandLink text="View Details#{bindings.PropertyVO2.children.PropId.currentRow}" id="cl1">
    <af:showPopupBehavior popupId="p1"/>
    </af:commandLink>
    </af:panelBox>
    </af:panelGroupLayout>
    </af:forEach>
    </h:panelGrid>
    pagedef code:
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="11.1.1.60.13" id="tilePageDef" Package="view.pageDefs">
    <parameters/>
    <executables>
    <variableIterator id="variables"/>
    <iterator Binds="PropertyVO2" RangeSize="25" DataControl="TestAMDataControl"
    id="PropertyVO2Iterator"/>
    </executables>
    <bindings>
    <tree IterBinding="PropertyVO2Iterator" id="PropertyVO2">
    <nodeDefinition DefName="viewvo.PropertyVO" Name="PropertyVO20">
    <AttrNames>
    <Item Value="PropId"/>
    <Item Value="PropAddress"/>
    <Item Value="PropLocation"/>
    <Item Value="PropType"/>
    <Item Value="PropPrice"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    </bindings>
    </pageDefinition>

  • Annoying screen appears everytime when calling another html page.

    i deployed my form application onto the web successfully. But
    there's one screen (Oracle Developer Server R6i) appearing every
    time I go to another page.
    For example: I have 2 forms A and B, each has its own html page
    containing Applet tab. The application starts from A.html, and
    A will call B.html. This oracle screen displays all the time
    when i click back or forward.
    How can I eliminate it?

    Thank you for your answer.
    The reasons I want to use web.show_document are:
    Firstly I don't know how to close the calling form when open the
    called form. The code works in client/server env, but it just
    hangs there on the web.
    Secondly, I hope to use the web back button to return to the
    previous form.
    Is there anyway i can do to eliminate the splash screen and
    function well?
    My guess is that you are talking about the splash screen that
    you can disable with a paramter in the HTML file.
    But this will not happen if you use normal CALL_FORM or
    OPEN_FORM buil-in in forms to activate one form from the other.
    Don't use web.show_document to open a new form it will only work
    slower that way.

  • Insert one html page into another html page

    Hi there,
    I wonder if sombody can help. I am trying to insert one short
    html page into another page. I could not find any option or feature
    in Dreamweaver that allow me to insert the page at all. The page I
    want to insert has the links and it is a short page, just like a
    banner. When I update the links on that page it will update all
    other pages in the website. I do not have to open many pages to
    update. I have been using FrontPage and I am now converting to
    Dreamweaver. Some codes from FrontPage does not work in
    Dreamweaver. I would very much appreciate if somebody can help with
    the codes.
    This is my website so that you can understand what I mean. At
    the top of the screen there are many links that are from one page I
    inserted into index.html. I use FrontPage. But, Dearmweaver does
    not work that way.
    Thank you. Kevin

    Be aware that IFrames carry all the disadvantages that frames
    do, for both
    you and your client's visitors.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "polarl light" <[email protected]> wrote in message
    news:g06ad0$2rm$[email protected]..
    >
    >> I wonder if sombody can help. I am trying to insert
    one short html page
    >> into
    >> another page. I could not find any option or feature
    in Dreamweaver that
    >> allow
    >> me to insert the page at all. The page I want to
    insert has the links
    >> and it
    >> is a short page, just like a banner. When I update
    the links on that
    >> page it
    >> will update all other pages in the website. I do not
    have to open many
    >> pages
    >> to update. I have been using FrontPage and I am now
    converting to
    >> Dreamweaver.
    >> Some codes from FrontPage does not work in
    Dreamweaver. I would very
    >> much
    >> appreciate if somebody can help with the codes.
    >
    > Depending on what you want to do you can use SSIs or an
    Iframe. SSIs are
    > good for things such as headers, menus and nav bars that
    you want to stay
    > the same across a range of pages. Iframes let you load
    an external HTML
    > file into a predefined area of your page so you can
    display different
    > content while staying on the same page.
    >

  • Displaying content on multiple html pages

    I’m building a basic website for a business/charity I
    work in. I’m no pro so all my pages and templates are written
    in HTML. For convenience it would be nice to have sustain bits of
    info appear throughout the website on different pages. As I
    understand the best way to do this is to create a RSS feed and then
    have the relevant web pages display the feed.
    However I’ve been reading up on how to do this and I am
    finding it very complicated and am not even sure if it can be done
    with an HTML page. All the examples I have come across seem to be
    done in PHP. I’m not even sure what PHP is.
    My question therefore is: Firstly, is RSS, what I need, or is
    there a simpler way of having bits of text appear on multiple web
    pages? And, if so, can I have RSS feeds display in an HTML? And,
    again, if so, can someone point me in the right direction to do
    this in the most simple but yet still efficient/reliable way?
    Thank You
    Ps, Merry Christmas and Happy New Year

    > Firstly, the web page displaying the SSI code seems to
    require a .shtml
    > extension, is this correct?
    Yes. It is true *unless* the host enables server parsing of
    all extensions.
    > Secondly, I don?t seem to have to change the SSI source
    file?s extension
    > from
    > .html to .ssi. And in fact I think it will make updating
    the website
    > easier for
    > my colleagues if I keep the extension to .html as, when
    I change the file
    > extension to .ssi, Dreamweaver?s properties inspector
    and CSS panels
    > become
    > inactive meaning that the only way to edit the file is
    going state into
    > the
    > code rather than using a point and click interface. Is
    there any reason
    > the SSI
    > source file should not keep an .html extension.
    Name the file being included anything you want. It doesn't
    matter to its
    functionality as an included file.
    > Is there any open source or low cost software out there
    that would make it
    > easier for my colleagues to update the website?s SSI
    files and still be
    > able to
    > format the text with the same CSS fill the whole website
    uses. Is this
    > what the
    > Contribute program in Macromedia Studio does?
    A properly constructed include file should only contain
    references to CSS
    rules specified in the parent page. That being the case, if
    you are editing
    the include file directly, you cannot style the text unless
    you are doing it
    in Dreamweaver, or unless you make reference to the existing
    styles
    specified in the parent page.
    Contribute does lots more than what you ask. Go to Adobe's
    site and read
    about it.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Chopo^2" <[email protected]> wrote in
    message
    news:[email protected]...
    > Ok, cool, thanks for all the help, I've even managed to
    get the text in
    > the
    > .ssi document to obey the same CSS rules as the rest of
    my web pages. Just
    > a
    > few last question concerning extensions and user
    friendliness before I?m
    > perfectly comfortable with using SSI.
    >
    > Firstly, the web page displaying the SSI code seems to
    require a .shtml
    > extension, is this correct?
    >
    > Secondly, I don?t seem to have to change the SSI source
    file?s extension
    > from
    > .html to .ssi. And in fact I think it will make updating
    the website
    > easier for
    > my colleagues if I keep the extension to .html as, when
    I change the file
    > extension to .ssi, Dreamweaver?s properties inspector
    and CSS panels
    > become
    > inactive meaning that the only way to edit the file is
    going state into
    > the
    > code rather than using a point and click interface. Is
    there any reason
    > the SSI
    > source file should not keep an .html extension.
    >
    > Is there any open source or low cost software out there
    that would make it
    > easier for my colleagues to update the website?s SSI
    files and still be
    > able to
    > format the text with the same CSS fill the whole website
    uses. Is this
    > what the
    > Contribute program in Macromedia Studio does?
    >
    > Thanks a lot everyone,
    >
    > Chopo
    >

  • Help with geturl as a link to another html page

    I am using a flash navbar I made, inside a html page created with DW, the action under each of the buttons is for example
    on (release) {
    getURL("links.html/", "_blank");
    it works but opens in a new window, I want it to remain in the same window ,I have tried self,blank,parent and top what do I need ?
    all the examples i see reffer to linking to another published site like "http:\\www.google.com" thats a different matter is it?
    thanks in advance

    this is the code now, nothing happens whaen i click (release)
    on (release) {
    getURL("index2.html/", "_self");

  • No page display icons/can't change page display

    Just installed Digital Editions on a MacBook Pro; there are no page display icons to change the view (to side-by-side pages, or one, etc) and the keyboard shortcuts don't work either.  Any thoughts?

    You are most likely viewing an ePub file.  The only controls are the font size controls, and the view will automatically move to a two page view when the combination of screen size/font size is enough to display the content in that view.  On my MacBook Pro this happens in a medium font view with the window maximized to full width.

  • Clicking on style.css in web console opens html page

    Why does clicking on the style.css and line number automatically open an html page?
    first time using this and can't figure out why it does this or how to configure it to open with a different editor

    For launching an external editor, this extension might be handy:
    https://addons.mozilla.org/en-US/firefox/addon/dafizilla-viewsourcewith/
    Recent updates are on the "all versions" page:
    https://addons.mozilla.org/en-US/firefox/addon/dafizilla-viewsourcewith/versions/
    If you try it, please report back on how it works for you.

Maybe you are looking for

  • Difference between AR and RA

    difference between AR and RA tables in Account Receivables???

  • Horizontal stacked bar chart supported?

    Hi, we have the requirement for a horizontal stacked bar chart. Is this supported in 12.x? Just to make shure bevore extending our own Chart Applets. Thanks, Matthias

  • Problems with PSE 8.0  (windows 7)

    Hello, PSE 8 doesn't work anymore on my PC with windows 7 Organizer opens well and also it is possible to import images, but it is not possible to give tags to images. So I cannot organize my images. When I try to edit an image in Editor, Editor open

  • Two colors in a cell ALV

    Hi All, I want to produce a report in ALV , where I have to print two diff colors in a cell.. Eg:       In a cell  128(38)   128(    ) in black and 38 in red. Thanks in advance. Balamurugan.R

  • HT1338 Downloading Upgrade ios7 on iPad

    I´m trying to download the new ios7 update on my iPad but it tells me there is not enough storage, that I need 3.3 MG of storage.  Well I bought more storage for $20 from the Apple Store and now I have 12.9 G of storage and I´m still getting the same