Displaying changing data in DW4 HTML pages

Hi - I'm hoping someone can offer a way to do this more efficiently in DW4 than how I did it for the client.
I originally did this in Flash but since I'm the only person who knows Flash here, and because I would not be the person updating the data on a daily basis, I moved it to DW4 as HTML files.
They wanted a map with pushpins of the US and other countries.  See image below:
When you click on a pushpin, the state or country appears displaying names.  Then you click on a name and it displays data about that person on the right.  See below:
It's basically a drill-down concept, starting with usa.html, clicking on a state, which displays northcarolina.html, clicking on a name, which displays personname.html. 
As you can imagine, if you have 50 names, you're going to have 50 HTML pages to keep track of.  And if 20 of those names are displayed on each page like the one above, if Ron quits and is replaced by someone named Mike Smith, you have to go to the NC page and all 20 individual pages to change the names.
I would love to be able to do this same concept but with one central spreadsheet or some other document that holds all of the names and data for each.  Then, when something needs to be updated, just do it in this central document and the HTML display automatically updates.
Any idea how this can be done with DW4 and some other type of data file?  Thanks. 

When you say "DW4" do you really mean "DW4" (vintage 1999) or "DW CS4" (vintage 2009)?
The best way to do this would be to use server scripting with a database.  But if you really mean DW4, then you would have to manually create all of that scripting.

Similar Messages

  • How to display an image on the HTML page by using applet

    Dear friends,
    I am now writing an java applet, I want to display an image on the HTML page, and tried the following commands:
    {color:#ff00ff}{color:#000000}Image map; //put in the class definition
    map=getImage(getCodeBase(),"hhh.gif"); //put in the function of init()
    g.drawImage(map,0,300,this); //put in the function of paint(){color}
    {color}
    However, when I run it, the image wasn't displayed at all.
    I hope who guys ever come across this problem could help me to solve it. Thank you in advance!
    Hawaii

    Hi,
    I am no expert on Images
    but
    from personal exp.
    are you sure that map actually contains the image?
    try using
    ImageIcon ii = ImageIcon(String name);
    map = ii.getImage();I saw a tutorial on images i think on sun
    where they use ImageIcon to load the image

  • How can i display database data in my jsp page?

    actually i m doing a small appliaction of quiz test.
    where i m keeping my question and answers in the database.
    now i want to pull questions from the database and display in the jsp or html page.for each question i m having 4 options 4 them.
    like this user has to answer the question and display the resuklt in the end.
    so how can i do this?
    can i get any example or source code for this from any sites?

    I never tried this... but doesn't the normal html <applet> tag work?

  • Display ABAP variable in an HTML page

    I am trying to display an ABAP variable in an HTML page. What is the syntax for the same? Kindly help.

    Thats exactly what im doing...modifying a class to change the properties of the table in a web template. Srry its not a BSP page....
    I tried ur syntax..
    concatenate '<table><tr><td colspan=6 style="background:green;height:20px">'l_r_tmp_var'</td></tr></table>' into C_CELL_CONTENT.
    .It gives an error..
    After "'<table><tr><td colspan=6 style="background:green;height:20px">'", there must be a space or equivalent character (":", ",", "."). (":", "          
    And when i remove the single quotes from the variable...it gives an error...
    Unable to interpret "'<table><tr><td colspan=6          
    style="background:green;height:20px">l_r_tmp_var</td></tr></table>'".     
    Possible causes: Incorrect spelling or comma error.     
    Plz help...

  • Is it true that I can't change the Registration Confirmation HTML page?

    I am using Connect 8 on Win2000 using Firefox. I am using Adobe's Connect as an Adobe hosted service, currently on a trial but happy to convert the service if I can iron out all difficulties.
    After creating Curriculum, I created an event and set up a number of guests. This is training, not really an event, but it is a series of online modules that the class attendees will need to view before the face-to-face classes started. Most things went well (allowing for user error, of course ;-) ), but when the attendees got their invitations and then went to the registration page, after completing this page, they got an HTML page that said
    "Thank you for your registration request. Your information has been submitted to the event host."
    I can preview this page at "http://meetxxx.adobeconnect.com/e1qrzebyxs7/event/registration_confirm.html"...but I can't change it here.
    I did searches here, and I came up with 2 thoughts: (1) I can buy Adobe Contribute to update that page (which I otherwise would have no use for), or wait until Connect 9 (Q1 2012) where changing this page will be an available feature.
    Is this it? Do I have no way of accessing that page via FTP? I would be more than happy to grab that page, update the text (which is all I want to do), and reload to that folder.
    The problem is that the default message on the page assumes that the administrator is going to have to see the registration in order to approve it...but I have already indicated on the set up that I don't need to approve registrations, but that the email with the link to the online modules can be sent immediately (which happens)...so I want this page to say something like "Thank you for your registration request. You will be sent an email shortly with the link to the online modules."
    Do I really have no alternative to change a message on a page that has clearly inappropriate text for the situation?
    Thanks!
    Bill

    Thanks, but unfortunately, this is not a message, it is the HTML page that it shown after a student registers for a course. I can see how to preview it at
    but I can't edit it here, nor anywhere else I can find...note that I am looking the "Registration Confirmation" link (last one).
    Bill

  • Displayed changed data without refresh

    Dear Expert,
    I am using CL_ALV_GRID to let the user input some code in one filed then the it's text display in another field automatically.But I meet a problem , to display the changed data I have to use method 'refresh'. This method will refresh all the data, but user only want to display the changed data.
    Is there any way to realize this kind of requirement ?

    Hi expert,
    Here data will be displayed on layout.After displaying the data first we need to modify the record after that selected that record
    and press the CUSTOME REFRESH button only selected row is changed  in internal table after that using set_table_for_fist_display using that method wt ever the modified the data in itab that data will display.
    claSS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
    MOVE 'REFRESH' TO ls_toolbar-function.
        MOVE icon_refresh  TO ls_toolbar-icon.
        MOVE 'REFRESH SCREEN'(140) TO ls_toolbar-quickinfo.
       MOVE 'DELETE DATA'(120) TO ls_toolbar-quickinfo.
        MOVE 'REFRESH'(140) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        APPEND ls_toolbar TO e_object->mt_toolbar.
        CLEAR ls_toolbar.
    ENDMETHOD.
    ENDCLASS.
    METHOD handle_user_command.
      CASE e_ucomm.
        WHEN 'REFRESH'.
          CALL METHOD r_grid->get_selected_rows
              IMPORTING
                 ET_INDEX_ROWS =
                 et_row_no     = it_rows.
          LOOP AT it_rows INTO wa_rows.
    MODIFY DBTAB FROM TABLE ITAB INDEX WA_ROWS-INDEX.
    ENDLOOP.
    CALL METHOD r_grid->set_table_for_first_display
            EXPORTING
              is_layout       = gs_layout "&see below
            CHANGING
              it_fieldcatalog = gt_fieldcat
              it_outtab       = ITAB.
    ENDMETHOD.
    STARTOFSELECTION.
    CREATE OBJECT r_container
        EXPORTING
          container_name              = 'CONTAINER_1'
    CREATE OBJECT r_grid
        EXPORTING
          i_parent          = r_container
    SET HANDLER event_receiver1->handle_user_command FOR r_grid.
      SET HANDLER event_receiver1->handle_toolbar FOR r_grid.
    Regards
    MURALII

  • Display the date parameters entered in page title

    How to use process to display the date paramaters selected by the user to generate the report in Page title ?
    Sanjay

    user12957777 wrote:
    How to use process to display the date paramaters selected by the user to generate the report in Page title ?Include the parameter item values in the Page Title attribute as substitution strings, for example:
    Sales Figures &P1_FROM_DATE. to &P1_TO_DATE.

  • Flv doesn't play in new dw4 html page

    after saving the new html page, i drag a flv file into it and save the page again. when i press f12, firefox opens with nothing but a dozen playback buttons in the page. in spite of autoplay have been set, no movie plays. i've tried this with three different playback skins. i'm not an html programmer. what do i do to  cause the page to play the flv file?  --david

    Hi
    You cannot simply drag an flv file onto a page in dreamweaver and expect it to work as the supporting files will be missing, (you may get the player skins, but not the flv file to play).
    Try following the instructions given in these two tutorials/instructions - http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7c9 ea.html
    and  http://www.adobe.com/devnet/dreamweaver/articles/add_video.html.
    PZ

  • How to display selected records on one HTML page?

    Hi,
    I would like to display selected part of records on one page in HTML region. For example I have a Master - Detail table set named Procedures and Tasks (each Procedure can have one or more tasks)
    I would like to be able to display all Tasks for a given Procedure in one HTML region on a page... The problem is that the number of tasks vary between procedures and can change in time. Also, the 'task description' can be very large so a simple report list of all tasks is something I cannot use... (I would like eg for the task name to be here, and the task_description to be there - unlike the report where everything is in one line...) The following are my ideas but non of them seemed to be feasable here...
    1. Use a report based on vertical columns (However I am using Theme 10 for which there are no vertical column templates. The only vertical templates I can see are the default ones but I have no idea how to customize them - where are they?)
    2. In HTML region use &ITEM_NAME. substitutions. In order to display more than one &EMN_NAME. (based on eg. EMPID) I suspect that I would need to write some kind of javascript loop. Has anyone have an idea about how would such a script look like?
    3. Display each Task in a separate screen. This is something I would want least but better than nothing - to have a customized report which would display one task at a time with some kind of pagination to it...
    Please let me know if someone has tried something simmilar or maybe there is a 4th option which will be simpler and easier...
    Many thanks,
    Pawel.
    I tried to make a very simple illustration of what I would like to achive here:
    http://htmldb.oracle.com/pls/otn/f?p=44995:3:9461299983704828937::::
    Message was edited by:
    padmocho

    Just to answer this one myself....
    In order to achive the above I used a PL/SQL Dynamic Content page and entered a html content in htp.prn('');
    Then, I created a PL/SQL LOOP which searches through the various rows...
    In the end, whenever I wanted to display html content I just used htp.prn and for variables I used htp.p(<var_name>);
    Maybe, it helps ;)

  • ADF Faces RichTable doesn't validate but still display changed data

    Hello,
    I think I miss something in the ADF Faces lifecycle management. Can you help me?
    In a adf faces/jsf page,
    1- I have a RichTable which DataModel is based on a List<Department> stored in a managed bean (session).
    2- I have a button "Cancel" with immediate=true partialSubmit=false (I don't use PPR) and an ActionMethod that does a few changes (not in the model) and return "success".
    When I modify a value in the table (that has some af:inputText) and click on the Cancel button, the underlying List<Department> instance isn't changed (Which I expect because of the immediate=true property!). But the table still display the changes I've typed in the page. How can I reverse the data displayed in the table to before my change in the UI (in a simple manner)? What do I miss?
    Best Regards
    Gregory

    Hi,
    immediate = true makes sure that the component is evaluated before all the other. In addition the value change event fires before the model update to give you the opportunity to prevent the update. I don't know what your managed bean code is doing, but the fact that the table has the update indicates the RC table component to work properly. Your table model isn't updated, which I don't think will be automatic. So I assume you will have to access the current selected row, get the row object and pass it to the list for an update
    Frank

  • How can I display the date on a jsp page??

    Is there anyway to display the current date when someone views a jsp page??? Can I get it from the server or something like that?
    Thx
    Rich

    is there any type of formatting that goes witth
    that.....Most definitely -- check out the java.text.DateFormat object and its cohort java.text.SimpleDateFormat.
    For example, if you wanted to display the current date in MM/DD/YYYY format, you could do the following:
    <%-- This could go somewhere near the top of the JSP %>
    <%
    SimpleDateFormat f = new SimpleDateFormat("MM/dd/yyy");
    %>
    <% And later on, you could have... %>
    <%= f.format(new Date()); %>Note that I've omitted the proper <%import%> directives.
    -Navin

  • Can I change a part of HTML page from server without reload whole page?

    Hey guys!
    I would like to make a page what shows a couple of information, some of these from database. I would like to refresh these datas every minute, but I don't want to reload whole page, because there are charts and other things that calculated in long time.
    If I use IFRAME's than I have to use more than 10, and I don't know which is best solution.
    Anyone can suggest something?
    My English is bad, so if you dont understand well what I would like to, please let me know and I gonna try to explain better.
    best regards,
    N.

    The tag is a normal HTML -tag, which causes the browser to reload that page after the specified time.
    So if you put this in you HTML:
    <HTML>
    <HEAD>
    <TITLE>Titless</TITLE>
    <META http-equiv="refresh" content="60;url=this.html">
    </TITLE>
    <BODY ...It'll wait 60 seconds and then (re)loads the page 'this.html'...
    (so this can be the same or another page).

  • How to display an applet in a html page

    I can't get my beautifull new applet displayed in IE.
    I just get a grey box instead of my applet...
    Can someone send me the correct code for displaying an applet under IE ???
    Thanks in advance,
    Menno.

    You need the following code between <body></body> tag:The applet tag wont help unless the OP has NN 6.0 or better. The OP will need the OBJECT tag when using IE and EMBED tag when using NN -- evidently he has a JApplet that will need the java plug-in so that it can run. Conversion from a HTML file having the APPLET-tag is done must then be done with the HTMLConverter.
    If it is in "/java/my_applet" then in the CODE
    attribute you type "/java/my_applet.class" No; the value of the code attribute must be the fully qualified class name. If the applet class file is in "/java/my_applet" and the applet's class name is "my_applet", the value of the code attribute must be "my_applet". The value of the codebase attribute must be "/java/my_applet".

  • I can't get today's date to show on my html pages with Javascript codes.

    I use javascript 1.2 codes to show up today's date on my HTML pages but it did not execute.
    Here is my code:
    <script language="Javascript">
    <!--
    document.write(displayDate());
    // -->
    </script>
    Please help! If you know how to get it to execute.
    Thank you.

    I don not know what displayDate() means
    But I am display current date and time with the code...
    <script language="Javascript">
    <!--
         document.write((new Date).toLocaleString());
    // -->
    </script>

  • File-Save window(saving the html page by clicking a button)

    Hi,
    when I click a button, a window should open which is same as the one which appears when we click File-save.
    This should happen to save the data that is displayed on the internetExplorer, when the user clicks the submit button on his page.(ie,Saving  the html page in his desired location).
    Thanks in advance.

    Refer FileDownload and FileUpload tutorial.
    If the idea is just to save the html page, I am not sure if it is possible.
    If the idea is to save the data in the html page then you can save it as xml format or csv format. Refer to the following tutorials:
    a) FileUpload and FileDownload
    b) Web Dynpro Binary cache
    Regards,
    Subramanian V.

Maybe you are looking for

  • How do i install lion on a different drive when i'm running mountain lion

    Lotus notes is incompatible with 10.8. The app store will not let me redownload lion even though i paid for it. I do have the "installESD.dmg" and I get the message that the new system is newer so it won't install it. Any suggestions? I need to insta

  • Itunes producer error message is driving me nuts

    Hi, I'm almost at the end of my rope with this problem.  Why is uploading to iTunes so difficult?  I've created an epub file in Sigil which tests ok in Sigil and FlightCrew. But when I try to upload it to iTunes, Producer keeps giving me this error m

  • Spot removal workflow

    Hi Just found out the hard way that if you have spot removal to be done, best its done sooner rather than later, specifically when creating snapshots. I failed to spot remove on one image about 10 spots at the beginning. And thus, upon doing so to on

  • OIM Email Notification

    I am Trying to do the Email Notification in OIM .I have specified an Instance of the mail Server,Server Name with User Login password in IT Resources Form and have Created the email definition in the Email definition form with a Request Related Type.

  • HT1338 im trying to update my macbook from 10.4.11 but its not letting me. what should i do?

    im trying to update my software from 10.4.11 but its not letting me. what should i do?