Details in a pop-up window.

L.S.
In my web application I display data from a database in a table. One of the columns in the table is a hyper link. When a user clicks the hyper link I would like a window to pop up, displaying additional data from the same data provider as the one that provides data for the table.
How do I code this functionality?
Thanks,
Annet.

L.S.
The data I would like to display is a description of the entry the user clicks in the table. I use the following javascript code to open the details page in a new window.
diaryDetails=window.open("/FitwiseB2C/faces/DiaryDetails.jsp?diaryId=#{currentRow.value['diary.diaryId']}", " diaryDetails ", "height=408, resizable=yes, scrollbars=yes, toolbar=no, width=480"); diaryDetails.focus(); return false;
This works fine except for the fact that instead of the diaryId I would like to pass the description to the details page, and that does not work, probably because the data type is text.
I also considered passing the rowKey as a parameter in the javascript code, that way I could just add the data provider to the details page and get the description using the rowKey, however I have no idea how to get the rowKey into the javascript code.
I also had I look at the Diva's adding a popup window to a Java Studio Creator Web Page tutorial (http://blogs.sun.com/divas/entry/adding_a_popup_window_to), however I was not able to adjust it in a way that suits my needs.
Could anyone advise me on how to tackle this problem.
Thanks,
Annet.

Similar Messages

  • How to create a pop up window with text information?

    Hi experts,
    I am a newbie in LC and I have created a form to be sent to the vendors by our buyers.  Everything seems fine except the Accounting Manager would like to include our Financial Details in the form.  I would like to simply create a pop up window with the information which will be activated by pressing a button.  I have tried to create an invisible button and a visible button to achieve this but didn't succeed. 
    p.s. I have no javascript background but slowly learning.  I would appreciate if anyone can assist me to complete the task.
    Thanks a million.

    Hi Mdjco,
    Thanks for replying.  What I need to accomplish is to have another page of information with all the financial details on the pop up window and the vendor has a choice to print it out or not.  After the form is filled out, it is to be sent back to our buyers.  So instead of me inserting a 2nd page with the information, I would like to hide it unless someone presses a button to show it.
    I have found something like making 2 buttons, one is invisible with all the information on it and the other one "visible" to activate the invisble button.  Didn't work at all.
    Also another question is after the vendor insert the digital signature, it automatically asked to save (which I found out why from help) and then it opens up the email and sends the form as XML.  I will need it to send as PDF, possible??
    Much appreciated.

  • I have just started to use Muse for our design agency and learning how to build ourselves a new site, I have manged to create a basic lightbox which contains sliding images, what I need to do now is have a pop up window which goes into detail about the pr

    I have just started to use Muse for our design agency and learning how to build ourselves a new site, I have managed to create a basic lightbox which contains sliding images, what I need to do now is have a pop up window which goes into detail about the projects, what I would like is a piece of text  or icon that when you roll over it and then click a separate window pops up with additional information in, once finished reading the info you can then click to close the box, any advice on how to do this?

    The best way to do what you're asking is with the Composition widget. Start with the Tooltip preset, which, by default shows the info on rollover. You can change the option to show on click, which is what you're after. You can also add the close button or have the info disappear on rollout.
    David

  • How to show details from web part as pop up window

    Hello
    I designed few web pages in SharePoint Designer 2010 and trying to customize it. I have a XSLTListView web part that is displaying filtered data from the external SQL database. When user choses the item from this list, I need it to show in the new pop
    up window. I can't seem to find the way to do it. Saw multiple references to use SP.UI.ModalDialog.ShowPopupDialog(url), but I don't know how and where to incorporate it, since there is no place in the page where it actually specifies that url
    of the page that I need to show as pop up.
    Below there is a code for the XsltListWebPart, where I'm hoping I could make changes to make it pop up (it seems that this is the part that is calling the display details form). The form that I'd like to pop up is DispForm.aspx
    <script>
    function showpreview<xsl:value-of select="$ViewCounter" />(o) {
    count = 1;
    for(i = 0; i &lt; o.childNodes.length; i++)
    var child = o.childNodes[i];
    if (child.style.display == &quot;none&quot; &amp;&amp; child.tagName == &quot;DIV&quot;)
    f = document.getElementById(&quot;n&quot; + count + &quot;<xsl:value-of select="$WPQ" />&quot;);
    f.innerHTML = unescape(child.innerHTML) + &apos;&#160;&apos;;
    count ++;
    </script>
    <div id="previewpaneerror{$ViewCounter}" style="width: 801px"></div>
    <table cellspacing="0" cellpadding="0" border="0" id="previewpanetable{$ViewCounter}" dir="{List/@Direction}">
    <xsl:choose>
    <xsl:when test="not($dvt_RowCount=0)">
    <tr>
    <td valign="top" style="width: 186px">
    <div class="ms-ppleft" style="width: 100px">
    <table cellspacing="0" cellpadding="0" border="0" style="width: 122%">
    <xsl:apply-templates select="." mode="RenderView"/>
    </table>
    </div>
    </td>
    <td valign="top">
    <div id="preview1{generate-id()}" class="style2" style="width: 690px; margin-left: 30px;">
    <table border="0" cellpadding="0" cellspacing="0">
    <xsl:for-each select="ViewFields/FieldRef[not(@Explicit='TRUE')]">
    <tr>
    <td nowrap="nowrap" valign="top" class="ms-formlabel" style="width: 143px">
    <nobr>
    <xsl:value-of select="@DisplayName"/>
    </nobr>
    </td>
    <td valign="top" class="ms-formbody" id="n{position()}{$WPQ}" style="width: 370px">
    </td>
    </tr>
    </xsl:for-each>
    </table>
    </div>
    </td>
    </tr>
    </xsl:when>
    <xsl:otherwise>
    <tr>
    <td class="ms-vb">
    <table class="ms-summarycustombody" cellpadding="0" cellspacing="0" border="0">
    <xsl:call-template name="EmptyTemplate" />
    </table>
    </td>
    </tr>
    <tr>
    <td height="5">
    <img src="/_layouts/images/blank.gif" width="1" height="5" alt="" />
    </td>
    </tr>
    </xsl:otherwise>
    </xsl:choose>
    </table>
    </xsl:template>
    Alla Sanders

    Hi Alla,
    You can show details from web part as pop up window using JavaScript with SP.UI.ModalDialog.ShowPopupDialog(url). Here is a demo you can refer to:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function(){
    var obj1=$("a[id='forum0-NewPostLink']");
    url="http://sp13"+obj1.attr("href");
    //alert(url);
    obj1.removeAttr("href");
    obj1.click(function(){
    openDialogBox(url);
    function openDialogBox(url) {
    var pageUrl=url;
    var title="New Discussion";
    SP.UI.ModalDialog.showModalDialog(
    url: pageUrl,
    autoSize: true,
    title: title,
    dialogReturnValueCallback: function (result){
    if(result== SP.UI.DialogResult.OK){
    //refresh parent window
    window.location.href=window.location.href;
    </script>
    Reference:
    https://social.technet.microsoft.com/Forums/en-US/f18062ed-2e17-440e-8e00-2904f5316802/discussion-board-forum-opens-in-other-page?forum=sharepointdevel
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Pop up window for a single field details..

    How to display a pop up window for details of one field by click?

    hi,
    chk this.
    report zsha.
    type-pools: slis.
    data: begin of iku occurs 0,
          check type c,
          kunnr type kna1-kunnr,
          name1 type kna1-name1,
          end of iku.
    data: ifldc type slis_t_fieldcat_alv .
    data: xfldc type slis_fieldcat_alv .
    select kunnr name1 into corresponding fields of table iku
            from kna1 up to 10 rows.
    clear xfldc.
    xfldc-reptext_ddic    = 'Customer'.
    xfldc-fieldname  = 'KUNNR'.
    xfldc-tabname   = 'IKU'.
    xfldc-outputlen  = '12'.
    append xfldc to ifldc.
    clear xfldc.
    xfldc-reptext_ddic    = 'Customer Name'.
    xfldc-fieldname  = 'NAME1'.
    xfldc-tabname   = 'IKU'.
    xfldc-outputlen  = '30'.
    append xfldc to ifldc.
    call function 'REUSE_ALV_POPUP_TO_SELECT'
         exporting
              I_TITLE  = 'This is the message here'
    *          i_checkbox_fieldname = 'CHECK'
              i_tabname            = 'IKU'
              it_fieldcat          = ifldc
         tables
              t_outtab             = iku
         exceptions
              program_error        = 1
              others               = 2.
    check sy-subrc  = 0.
    popup_with_table_display.
    Usage:
    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
    EXPORTING ENDPOS_COL = 41
    ENDPOS_ROW = 10
    STARTPOS_COL = 1
    STARTPOS_ROW = 1
    TITLETEXT = TEXT-202
    IMPORTING CHOISE = SEL_ROW
    TABLES VALUETAB = ITAB
    EXCEPTIONS OTHERS = 99.
    IF SY-SUBRC EQ 0 AND SEL_ROW > 0.
    READ TABLE ITAB INDEX SEL_ROW.
    REF_NAME = ITAB-TABNAME.
    ELSE.
    REF_NAME = SPACE.
    ENDIF.
    Regards,
    Anver

  • Possible to display the POP-UP WINDOW???

    Hi,
    I need to copy or some times need to paste or some task which is very easily displayed in Microsoft products which is called POP-UP WINDOW.
    Can I Use that in my form? I am working in Developer 6i.
    Farhad

    Hi farhad,
    I told u the way u can create the popup for the any item through object navigator. Please refer online help for details. There is clearcut picture in online help about the topic u asked. I think u are a developer, instead of asking sample, please refer Formbuilder reference guide which available in otn.documentation, which help u a lot and u can solve the problem on your own
    regards
    prasanth a.s.

  • How to activate a pop up window

    for transaction me57 when we enter purchase requisition no, it will display a details , then select the particular item and go for detail list then a pop-up-window will bw displayed, we created a z transaction for me57 added two push buttons for the pop-up-window and corresponding z program created, when we are going for detail list pop-up-window is displaying but the push buttons are in desable mode, thanks for your help
    krishna

    till not answered so i'm closing this

  • Need help big time with pop-up window!

    This is probably an easy answer, I'm not a programmer or a back end guy whatsoever, I'm a graphic designer trying to make his way through a project for a client.
    I'm working up a Flash template, and I need to make a simple pop up window that will view a more detailed version of an image.  The template has a pop up window system where you add your photo to a certain frame of a movie clip.  The problem is, the pop ups have scroll bars built in, and for the life of me I couldn't figure out how to get rid of them, so I duplicated one of the movie clips that looked like it housed the framework of the pop up and deleted the scroll bar (I didn't delete any of the scroll bar code because I had no idea what I was doing).  It actually kind of worked, but the pop up window is a bit too wide and doesn't look right.
    You can view my hack job here...
    http://truetilldeathhq.com/main8_v7/main8_v7.html
    Stay on the "Print" page and click the first "01" button and an ad for Ford will come up.  Click the "Detailed View" button in the description to see the pop up window.
    My question is, there MUST be an easier way to make a pop up window than the workaround I'm using with the template.  What I'm trying to do is have a pop up for each sample of the work (all images would be the same size) for the first four buttons, and then for the "Online Banners" page, have the pop up open up to the dimensions of the particular banner ad and play the swf.  The pop ups shouldn't have scroll bars, only a title and the button to close the window.
    To view the template files, you can download them at:
    http://truetilldeathhq.com/main8_v7/main8_v7.fla
    The "descripton" movie clips have the descriptions and the "Detailed View" links in the frames, and the movie clips I not so gracefully butchered to get the pop up to work were TM_page_content_scroll (where you're supposed to put an image in a certain frame and then put the # of that frame in the Actionscript of the "Detailed View" button), and the TM_main_cont_page2 and TM_pop_up_main3, which were the ones I duplicated.
    If ANYONE can offer even the slightest bit of help, I gratefully appreciate it.  I've been working on this thing for like 15 hours a day and I can't even think straight at this point, thanks!

    I admit to not having read everything you wrote... there's just too much of it. But...
    Hashtable (and HashMap, which you should really be using unless you have some external constraint requiring the use of Hashtable) map each key to a single value object.
    That is, you can map from the key string "4996" to one single other object. And then you can also map from a different key to a different object.
    In you put() method, you add a mapping from "4996" to "good", and then you replace that mapping with one from "4996" to "home". There is only ever one value associated with a given key.
    To map multiple values to a single key, you need the value object to be a collection of some kind (or an array). So, you could map your string "4996" to a List, and that list could contain the strings "good", "home", etc.

  • RESTART COMPUTER POP-UP WINDOW ISSUE

    Please help me help me why I keep getting the same restart computer pop-up window lately with no error message at all even though the software update is completely up-to-date.

    Can you describe this "pop-up window" in more detail? Is it the +kernel panic+ message that takes over the screen, has multiple languages, and does not let you do anything else? Or is a a regular dialog widow that you can move around, with normal buttons, that still allows control of the Mac? If the latter, what does the window say, exactly?

  • Pop up window saying Memory is too low to continue in Logic.Why?Way to Fix?

    I recently purchased my IMac OSX 10.6.3 as well as Logic. I have about a half dozen projects on my hard drive now, which is also being backed up to a "time machine" external drive. The projects are pretty small( just piano, or piano and string quartet, etc.) I also just installed Office Suite for Mac and the full Adobe Creative Suite.
    Recently when I have been working in the Score Editor(In Logic Pro 9), a pop up window appears saying something to the effect of "memory is getting low, don't install more plugins and remove any unused ones." Then today, after that pop up, another one showed up and said "memory is too low to continue. we will close project, autosave, etc. etc."
    Why is this happening? Is there not enough memory on my computer? Will this actually effect editing procedures in Logic? (because it seems like some things aren't working like they used to) Is there a quick and easy fix? Is this related to space remaining on hard drive, or is it completely different? Could it be related to the IMAC backing up files to my "time machine" drive at the same time I am working in LOGIC?
    Could someone who has a little time on their hands please answer these questions IN DETAIL? I am new to MAC and LOGIC, so I really have no Idea what's going on with the memory issue. I don't even understand how MEMORY corresponds to available space, quality of running programs, etc.
    Please help. I'm working on a deadline to finish a Master's portfolio and this could potentially be a big bump in the road for me.
    Thanks....

    The System Requirements for Logic Studio call for a minimum or 1 GB RAM with 2 GB recommended. So you should not have a problem with your 4 GB.
    First make sure your RAM is being recognized by your computer. Go to Apple Menu (apple in upper left hard corner and click on "About this Mac". Make sure it say 4 GB. Ram chip at times will go bad or become unseated.
    Now for troubleshooting, here is what I would do. The next time you want to use Logic, restart your computer. Restarting "flushes" the RAM; it may not sound like it but that is a good thing. Then do not open any other programs other than Logic (except ones you may need for it). You listed an awesome group of software you own. Your computer is not set up for all these programs to automatically start up when you turn on the computer, is it??
    So I am betting that you will not get the low memory message when only Logic is working. With some trial and error you will be able to open more and more programs at the same time without effecting Logic.
    You can better understand your RAM by opening Activity Monitor (Applications >> Utilities >> Activity Monitor). Click on the System Memory tab at the bottom and you can visualize what your RAM (Memory) is doing. There is also a list of programs that are open and what resources they are sucking up.
    Good luck with your computer and your masters.
    Arch

  • How to create a pop up window while creation of the delivery note.

    Hello Experts
    How to create a pop up window while creation of the delivery note.
    As soon as we go in to delivery note creation screen in VL01N, immediately a pop up screen should be displayed on the screen containing the following details,
    For e.g.
    Str. Loc     Qty      UOM
    DE01        100        KG
    DE99          50        KG

    Dear all,
    i m having two document numbers for invoic of same types such as output type print program and smartform.
    biut the issue is im getting print preview for one invoic and for another invoic i m not getting any print preview.
    Directly the cursor comes to initial stage of vf03.
    suggest what to do
    Thanks and regarnds
    ravi

  • How to find screen no. of a pop-up window?

    Hi friends,
    Any one can let me know, How to find the screen no. of pop-up window?
    Thank,
    Punjaala

    To find screen no of a pop-up screen, in debuggin mode give break point at call screen statement.
    Usually pop-ups would be called by call screen starting in (x,y) cordinates. so it'll stop at that point.
    you can find out the pop-up details there.
    Regards,
    Joan

  • Viewing PDF files in IE with pop-up windows

    I have a web page (see attached) that loads a PDF file in an iframe and also launches a pop-up window in the onload event (via javascript) and then closes that window in the onunload event.  If I go from one page that does this to another, or I reload that page the PDF does not display - I just get a blank iframe.  This problem does not occur in any version of Adobe Reader begore 9.0 - but appears to happen consistently on multiple machines running Adobe 9.0 or above.  If I don't close the window in the onunload event it works fine.  Has anyone experienced anything similar - is there any fix for this?
    Please try the attached sample: Load the page (view the pdf) then click on the "Refresh this page" link and see what happens - the PDF file should disapear.
    Please let me know if you have any ideas.
    Thanks,
    Ami

    This sample is just for demonstration purposes - so it might not make a lot of sense to do, but we have a live web site that has a need to pop-up additional details for the PDF file being viewed and we run into this problem where the first PDF works, but when you move from one to the next, the PDF does not display in Adobe 9.  If you are running Adobe 9 and you click on the refresh this page link you should get an error or a blank area where the PDF would normally display.

  • Pop Up Window - Dynamic Page - Need Best Solution

    I'd like to create a pop-up window for my site. I've used behaviors in the past. I'm not sure if that's the best way now. Basiclly I have a photo gallery with thumbnails. Once you click the thumbnail I want a larger window to open with the image. I've seen the javascript windows used that use CSS lightbox, however I can't get it to work with my site. I guess I should mention I'm using:
    ASP vbscript
    SQL Database
    Unit is set for repeating regions
    Help me find the best solution to carry out this task. Thanks in advance.

    At this time I can't post the page. This is what I'm using:
    http://www.lokeshdhakar.com/projects/lightbox2/
    Using asp vbscript ,ms sql database with a link to the image paths that are sitting in the images folder.
    This is really all I can show you. Hopefully you can make heads of tails out of it. Thanks for answering my post!
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
    <!--#include file="Connections/conn_ssfGallery.asp" -->
    <%
    Dim rs_ssfGallery
    Dim rs_ssfGallery_cmd
    Dim rs_ssfGallery_numRows
    Set rs_ssfGallery_cmd = Server.CreateObject ("ADODB.Command")
    rs_ssfGallery_cmd.ActiveConnection = MM_conn_ssfGallery_STRING
    rs_ssfGallery_cmd.CommandText = "SELECT * FROM dbo.tbl_pictures ORDER BY picture_ID ASC"
    rs_ssfGallery_cmd.Prepared = true
    Set rs_ssfGallery = rs_ssfGallery_cmd.Execute
    rs_ssfGallery_numRows = 0
    %>
    <%
    Dim HLooper1__numRows
    HLooper1__numRows = 25
    Dim HLooper1__index
    HLooper1__index = 0
    rs_ssfGallery_numRows = rs_ssfGallery_numRows + HLooper1__numRows
    %>
    <%
    '  *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
    Dim rs_ssfGallery_total
    Dim rs_ssfGallery_first
    Dim rs_ssfGallery_last
    ' set the record count
    rs_ssfGallery_total = rs_ssfGallery.RecordCount
    ' set the number of rows displayed on this page
    If (rs_ssfGallery_numRows < 0) Then
      rs_ssfGallery_numRows = rs_ssfGallery_total
    Elseif (rs_ssfGallery_numRows = 0) Then
      rs_ssfGallery_numRows = 1
    End If
    ' set the first and last displayed record
    rs_ssfGallery_first = 1
    rs_ssfGallery_last  = rs_ssfGallery_first + rs_ssfGallery_numRows - 1
    ' if we have the correct record count, check the other stats
    If (rs_ssfGallery_total <> -1) Then
      If (rs_ssfGallery_first > rs_ssfGallery_total) Then
        rs_ssfGallery_first = rs_ssfGallery_total
      End If
      If (rs_ssfGallery_last > rs_ssfGallery_total) Then
        rs_ssfGallery_last = rs_ssfGallery_total
      End If
      If (rs_ssfGallery_numRows > rs_ssfGallery_total) Then
        rs_ssfGallery_numRows = rs_ssfGallery_total
      End If
    End If
    %>
    <%
    Dim MM_paramName
    %>
    <%
    ' *** Move To Record and Go To Record: declare variables
    Dim MM_rs
    Dim MM_rsCount
    Dim MM_size
    Dim MM_uniqueCol
    Dim MM_offset
    Dim MM_atTotal
    Dim MM_paramIsDefined
    Dim MM_param
    Dim MM_index
    Set MM_rs    = rs_ssfGallery
    MM_rsCount   = rs_ssfGallery_total
    MM_size      = rs_ssfGallery_numRows
    MM_uniqueCol = ""
    MM_paramName = ""
    MM_offset = 0
    MM_atTotal = false
    MM_paramIsDefined = false
    If (MM_paramName <> "") Then
      MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "")
    End If
    %>
    <%
    ' *** Move To Record: handle 'index' or 'offset' parameter
    if (Not MM_paramIsDefined And MM_rsCount <> 0) then
      ' use index parameter if defined, otherwise use offset parameter
      MM_param = Request.QueryString("index")
      If (MM_param = "") Then
        MM_param = Request.QueryString("offset")
      End If
      If (MM_param <> "") Then
        MM_offset = Int(MM_param)
      End If
      ' if we have a record count, check if we are past the end of the recordset
      If (MM_rsCount <> -1) Then
        If (MM_offset >= MM_rsCount Or MM_offset = -1) Then  ' past end or move last
          If ((MM_rsCount Mod MM_size) > 0) Then         ' last page not a full repeat region
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      If (MM_rs.EOF) Then
        MM_offset = MM_index  ' set MM_offset to the last possible record
      End If
    End If
    %>
    <%
    ' *** Move To Record: if we dont know the record count, check the display range
    If (MM_rsCount = -1) Then
      ' walk to the end of the display range for this page
      MM_index = MM_offset
      While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size))
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
      ' if we walked off the end of the recordset, set MM_rsCount and MM_size
      If (MM_rs.EOF) Then
        MM_rsCount = MM_index
        If (MM_size < 0 Or MM_size > MM_rsCount) Then
          MM_size = MM_rsCount
        End If
      End If
      ' if we walked off the end, set the offset based on page size
      If (MM_rs.EOF And Not MM_paramIsDefined) Then
        If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then
          If ((MM_rsCount Mod MM_size) > 0) Then
            MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)
          Else
            MM_offset = MM_rsCount - MM_size
          End If
        End If
      End If
      ' reset the cursor to the beginning
      If (MM_rs.CursorType > 0) Then
        MM_rs.MoveFirst
      Else
        MM_rs.Requery
      End If
      ' move the cursor to the selected record
      MM_index = 0
      While (Not MM_rs.EOF And MM_index < MM_offset)
        MM_rs.MoveNext
        MM_index = MM_index + 1
      Wend
    End If
    %>
    <%
    ' *** Move To Record: update recordset stats
    ' set the first and last displayed record
    rs_ssfGallery_first = MM_offset + 1
    rs_ssfGallery_last  = MM_offset + MM_size
    If (MM_rsCount <> -1) Then
      If (rs_ssfGallery_first > MM_rsCount) Then
        rs_ssfGallery_first = MM_rsCount
      End If
      If (rs_ssfGallery_last > MM_rsCount) Then
        rs_ssfGallery_last = MM_rsCount
      End If
    End If
    ' set the boolean used by hide region to check if we are on the last record
    MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount)
    %>
    <%
    ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
    Dim MM_keepNone
    Dim MM_keepURL
    Dim MM_keepForm
    Dim MM_keepBoth
    Dim MM_removeList
    Dim MM_item
    Dim MM_nextItem
    ' create the list of parameters which should not be maintained
    MM_removeList = "&index="
    If (MM_paramName <> "") Then
      MM_removeList = MM_removeList & "&" & MM_paramName & "="
    End If
    MM_keepURL=""
    MM_keepForm=""
    MM_keepBoth=""
    MM_keepNone=""
    ' add the URL parameters to the MM_keepURL string
    For Each MM_item In Request.QueryString
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item))
      End If
    Next
    ' add the Form variables to the MM_keepForm string
    For Each MM_item In Request.Form
      MM_nextItem = "&" & MM_item & "="
      If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
        MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_item))
      End If
    Next
    ' create the Form + URL string and remove the intial '&' from each of the strings
    MM_keepBoth = MM_keepURL & MM_keepForm
    If (MM_keepBoth <> "") Then
      MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
    End If
    If (MM_keepURL <> "")  Then
      MM_keepURL  = Right(MM_keepURL, Len(MM_keepURL) - 1)
    End If
    If (MM_keepForm <> "") Then
      MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
    End If
    ' a utility function used for adding additional parameters to these strings
    Function MM_joinChar(firstItem)
      If (firstItem <> "") Then
        MM_joinChar = "&"
      Else
        MM_joinChar = ""
      End If
    End Function
    %>
    <%
    ' *** Move To Record: set the strings for the first, last, next, and previous links
    Dim MM_keepMove
    Dim MM_moveParam
    Dim MM_moveFirst
    Dim MM_moveLast
    Dim MM_moveNext
    Dim MM_movePrev
    Dim MM_urlStr
    Dim MM_paramList
    Dim MM_paramIndex
    Dim MM_nextParam
    MM_keepMove = MM_keepBoth
    MM_moveParam = "index"
    ' if the page has a repeated region, remove 'offset' from the maintained parameters
    If (MM_size > 1) Then
      MM_moveParam = "offset"
      If (MM_keepMove <> "") Then
        MM_paramList = Split(MM_keepMove, "&")
        MM_keepMove = ""
        For MM_paramIndex = 0 To UBound(MM_paramList)
          MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1)
          If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then
            MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex)
          End If
        Next
        If (MM_keepMove <> "") Then
          MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)
        End If
      End If
    End If
    ' set the strings for the move to links
    If (MM_keepMove <> "") Then
      MM_keepMove = Server.HTMLEncode(MM_keepMove) & "&"
    End If
    MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "="
    MM_moveFirst = MM_urlStr & "0"
    MM_moveLast  = MM_urlStr & "-1"
    MM_moveNext  = MM_urlStr & CStr(MM_offset + MM_size)
    If (MM_offset - MM_size < 0) Then
      MM_movePrev = MM_urlStr & "0"
    Else
      MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size)
    End If
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Southern Store Fixtures Inc.</title>
    <link href="CSS/global.css" rel="stylesheet" type="text/css" />
    <link href="CSS/layout.css" rel="stylesheet" type="text/css" />
    <link href="CSS/details.css" rel="stylesheet" type="text/css" />
    <!--beginning of lightbox script -->
    <link href="CSS/lightbox.css" rel="stylesheet" type="text/css" />
    <script src="Scripts/protype.js" type="text/javascript"></script>
    <script src="Scripts/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
    <script src="Scripts/lightbox.js" type="text/javascript"></script>
    <!--end of lightbox script -->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #apDiv1 {
    position:absolute;
    left:1226px;
    top:643px;
    width:284px;
    height:251px;
    z-index:1;
    a:link {
    color: #CCC;
    text-decoration: none;
    a:hover {
    color: #5FABFF;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    </style>
    <link href="CSS/gallery.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <!--begining of wrapper div -->
    <div id="wrapper">
      <!---begining of header--->
      <div id="header"><img src="SSFLogo.png" width="298" height="96" alt="SSFlogo" /></div>
      <!---end of header--->
      <div id="banner"><img src="blueHeader_2.png" width="950" height="133" alt="header" /></div>
      <!---begining main nav--->
      <div id="mainNav"> 
        <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.asp">Home</a>    </li>
        <li><a href="#" class="MenuBarItemSubmenu">Company Info</a>
          <ul>
            <li><a href="#">Privacy Policy</a></li>
            <li><a href="#">About Us</a></li>
            <li><a href="#">Jobs/Career</a></li>
            <li><a href="#">Information Request</a></li>
          </ul>
        </li>
        <li><a class="MenuBarItemSubmenu" href="#">Gallery</a>
          <ul>
            <li><a class="MenuBarItemSubmenu" href="#">Store Pictures</a>
              <ul>
                <li><a href="#">Item 3.1.1</a></li>
                <li><a href="#">Item 3.1.2</a></li>
              </ul>
            </li>
    </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Products</a>
          <ul>
            <li><a href="#">Self Serve</a></li>
            <li><a href="#">Serve</a></li>
            <li><a href="#">Multi Decks</a></li>
            <li><a href="#">Combinations</a></li>
            <li><a href="#">Food Service</a></li>
            <li><a href="#">Islands</a></li>
            <li><a href="#">Produce</a></li>
            <li><a href="#">Floral</a></li>
            <li><a href="#">Hot Foods</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">News/Events</a>
          <ul>
            <li><a href="#">Inside Look</a></li>
            <li><a href="#">Happenings</a></li>
            <li><a href="#">Trade Show Schedule</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Contact</a>
          <ul>
            <li><a href="#">Customer Service</a></li>
          </ul>
        </li>
        <li><a href="#" class="MenuBarItemSubmenu">Buiss. Portal</a>
          <ul>
            <li><a href="#">Login</a></li>
          </ul>
        </li>
      </ul>
      </div>
      <!---end main nav--->
      <!---begining subBanner--->
      <div id="subBanner"><img src="secBanner.png" width="950" height="156" alt="secBanner" /></div>
      <!---end subBanner--->
      <!---begining contenMain--->
      <div id="contentMain">
        <!--beginning of gallery div -->
        <div id="gallery">
          <p>
            <!--beginning of galleryImage div -->
          </p>
          <table width="400" border="0" align="center" id="galleryNav2">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
          <p> </p>
          <table align="center" id="HorzLooper">
            <%
    startrw = 0
    endrw = HLooper1__index
    numberColumns = 5
    numrows = 5
    while((numrows <> 0) AND (Not rs_ssfGallery.EOF))
    startrw = endrw + 1
    endrw = endrw + numberColumns
    %>
            <tr align="center" valign="top">
              <%
    While ((startrw <= endrw) AND (Not rs_ssfGallery.EOF))
    %>
              <td><div id="galleryImage">
                <div id="galleryThumb"><a href="images/pic/<%=(rs_ssfGallery.Fields.Item("picture_url").Value)%> rel="lightbox"><img src="images/thumb/<%=(rs_ssfGallery.Fields.Item("thumb_url").Value)%>" alt="<%=(rs_ssfGallery.Fields.Item("alt_url").Value)%>" /></a></div>
                <div id="galleryImageID"><%=(rs_ssfGallery.Fields.Item("picture_ID").Value)%></div>
                <div id="galleryImageFamily"><%=(rs_ssfGallery.Fields.Item("family").Value)%></div>
              </div></td>
              <%
    startrw = startrw + 1
    rs_ssfGallery.MoveNext()
    Wend
    %>
            </tr>
            <%
    numrows=numrows-1
    Wend
    %>
          </table>
          <p> </p>
          <table width="400" border="0" align="center" id="galleryNav">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
    <!--end of galleryImage div -->
        </div>
        <!--end of gallery div -->
      </div>
      <!---end of contentMain--->
      <!---begining of contentSec--->
      <div id="contentSec">
        <div id="column1"></div>
        <div id="column2"></div>
        <div id="column3"></div>
      </div>
      <!---end of contentSec--->
      <!---begining of secNav--->
      <div id="secNav">
        <div id="column1">
          <p align="center">Supermarket  </p>
          <p align="center">C-Store </p>
          <p align="center">Small  Format  </p>
          <p align="center"> Food  Service </p>
          <p align="center"> Gourmet </p>
          <p align="center"> Restaurant</p>
        </div>
        <div id="column2">
          <p align="center">Produce </p>
          <p align="center">Prepared  Foods</p>
          <p align="center">Deli </p>
          <p align="center"> Meat </p>
          <p align="center">Seafood </p>
          <p align="center">Cheese </p>
          <p align="center">Bakery </p>
          <p align="center">Floral </p>
          <p align="center">Sushi </p>
          <p align="center"> </p>
    </div>
        <div id="column3">
          <p align="center">Soup </p>
          <p align="center"> Chocolate   </p>
          <p align="center">Food  Bars </p>
          <p align="center">Low  Temp </p>
          <p align="center">Gelato </p>
          <p align="center"> Hot  Cases </p>
          <p align="center"> Pizza/Sandwich </p>
          <p align="center"> Multi-Decks </p>
          <p align="center">  Islands</p>
          <p> </p>
        </div>
        <div id="column4">
          <p>Trade Shows</p>
          <p>About</p>
          <p>Info</p>
          <p>Privacy</p>
          <p>Content</p>
          <p>Service</p>
          <p>Parts</p>
          <p>Login</p>
        </div>
      </div>
      <!---end of secNav--->
      <!---begining of footer--->
      <div id="footer">Southern Store Fixtures 2010 Inc.| All Rights Reserved</div>
      <!---end of footer--->
    </div>
    <!--end of wrapper div -->
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>
    <%
    rs_ssfGallery.Close()
    Set rs_ssfGallery = Nothing
    %>

  • Pop Up Window and Drop Down Menu Question PLSS Help

    Hi Guys,
    Ne help would be appreciated I am designing a website in
    Dreamweaver, I need to know how to create a custom drop down menu.
    Is there anyway that instead of using the standard drop down menu,
    you can customize them e.g use an image instead. For example, when
    you rollover lets say Home a drop down appears but the menu is
    customised e.g colour, text and any other small details.
    Even when using the standard drop down menu, how can you have
    a particular text, whenever I go to edit font list it does not show
    the typeface, although it is activated in suitcase.
    Secondly, how can I create a custom pop up window?
    I would really appreciate any help for either of these
    Many Thanks

    hi,
    Creator does not recognize (or whatever you say) characters like '<'. You can import js file which includes your script or change these characters for example put "<" instead of "<".
    regards...

Maybe you are looking for

  • No TV Shows on iTunes??

    For the past two days, my iTunes store has TV shows nowhere to be found!! It doesn't list movies or TV Shows, and when I search for one, it finds nothing. Are TV Shows still available for download off iTunes? I think it's an amazing feature, and now

  • Hardware or software issue?

    I have a new computer (i3 2100T CPU with intel hd2000 graphic, Asrock H67M-ITX/HT motherboard), and I have a strange problem with it. From time to time in some applications - only a few are affected e.g firefox, eye of gnome (image viewer), gimp - I

  • OS 10.6.5 Wireless Networking Bug?

    I recently purchased a used Mac Mini Model A1176 (1.83GHz Core 2 Dual, 1GB Ram, Airport Extreme 802.11a/b/g) which came with OS 10.6.4. The first time I fired it up I was able to log into my wireless home network (Verizon DSL, Linksys WRT-54G Wireles

  • Handling Unit Status (0031) - Physical Inventory

    Hello Friends,   We need to know when the system change HU status to 0031 in table VEKP (HU Header) .  We assumed that, it will be during physical inventory posting for HU's and for testing the following transactions are executed - 1. HUINV01 - 2. HU

  • Question for ABAP coding

    Hi, I have a report that I am making that I am stuck on. I have to select a date range, sales org, and currency to view the report in.  I have coded it and it looks right to me, but I don't get the correct results.  In stead i get a message after the