How to forbid browsering pages by IE "previous or next"

in my program, i need to clear the buffer which could lead others go back to previous page bypass the server. in other word, i need to make the page out of date when i've submited it. who can help me , thanks in advance

set the expiry date of your JSP page:
<META HTTP-EQUIV=Expires CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
http://vancouver-webpages.com/META/metatags.detail.html

Similar Messages

  • Is it possible to use two buttons on a master page to link to consecutive pages i.e. previous or next

    The easiest way to explain what I am attempting to achieve is to create a navigation template on the master page, with two identical arrows, one pinned to the left side, and one to the right, along with a basic 3 button navigation for; home - table of contents - end for example.
    The idea behind the arrows is that if on my "Plan" tab in Muse, I have all pages within the site in consecutive order from left to right and everytime I change the image that represents the previous or next, I have to go through every page, delete the source image, add the source image to every page (50+ pages) and then link each page individually to the next page in the order.
    Any help would be greatly appreciated.
    Jeff

    I produce a 300-page magazine twice a year that uses next/previous links. Unfortunately master items can't be edited on individual pages. My solution is to edit the HTML after the export. Too bad overrides don't work as they do in InDesign.
    In Muse you could create the arrows on an editable page, then copy/paste-in-place on the rest of the pages and edit the links on each page. Isolate them on a separate locked layer above the regular page content so they don't get moved accidentally.
    Julie

  • How to have a page in landscape and the next in portrait

    i am unable to figure out how to have in a single document a page in landscape and the next one in portrait.
    can someone advise on how to do it? or maybe this option is not available in pages08.
    at least i have to be able to insert a chart in lanscape even if the document is in portrait and i am unable to do it as well

    hadial,
    To fill in the blanks: start your document in portrait mode; on page 2 select all the elements, then click on the Metrics inspector. Use the rotation wheel to rotate this elements 90 degrees.
    -Dennis

  • How to: Horizontal slideshow with parts of previous and next images

    I want to make a slideshow with 6 images in it. The centre image is fully visible, the previous and next images, you can only see parts of it. When you click on the button for previous and next the image swipes tot the centre. Is this possible in Muse, and how???
    I dont want to show the slideshow in the full background( yellow area in the screenshot) but only in the main container.(see image below)

    "Previous" and "Next" buttons are for selecting the next or previous menu in a series of submenus for multiple chapter selection. Look at the options for indexing that creates multiple submenus for the chapters in a timeline.

  • How do I prevent Pages from pushing paragraphs to next page when they would otherwise begin on the last line of the previous page?

    I am writing papers for school which have strict page limits so I can't afford to be losing lines at the bottom of a page because Pages thinks it looks better to have a new paragraph start on the next page. It does this automatically and I have to go back and manually format to get the first line of the paragraph to start on the last line of the previous page. This then creates problems down the line when I am editing so I would really like to be able to turn the feature off.
    e.g. with Pages auto-formatting
    -----page 1-----
         Paragraph #1 blah blah
    blah blah blah
         Paragraph #2 blah blah
    blah blah blah
    -----page 2-----
         Paragraph #3 blah blah
    blah blah
    e.g. after manual formatting
    -----page 1-----
         Paragraph #1 blah blah
    blah blah blah
         Paragraph #2 blah blah
    blah blah blah
         Paragraph #3 blah blah
    -----page 2-----
    blah blah

    Change the keep with next rules in:
    Inspector > Text > More > Pagination & Break
    Peter

  • How do I get pages to show previous entries in a pages table in the new version?

    Working in a table in pages on the new version. I am typing up questions and don't want duplicates, the old version would bring up previous entries that where the same. I can't get it to do that. Please help.
    Thanks.

    It's just one of the many, many features that have been eliminated or changed. Leave feedback for the Pages team using the link in the Pages menu.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • How to get the page number when click the(Next page) Icon on Tableview

    Hi all,
           I had implemented a tableview in one of the Views that I had implemented for a BSP application. I am using MVC framework.
    Let us assume when we execute the BSP and a table view got 11 pages.
    How I can keep track of the page number when we click the  (Next page, Previous page, Bottom , Top) Icons on my tableview . Is there any attribute willstore that  corresponding page number of the tableview when we click the corresponding Icon's??
    I had checked both CL_HTMLB_TABLEVIEW and CL_HTMLB_EVENT_TABLEVIEW Classes and i don't find any attribute.
    Any help will be appreciated.
    Thanks in advance.
    Thanks,
    Greetson

    Hi Greetson,
      I was thinking to write a weblog about that.
      But now I would like to have your opinion:
      I coded a generic method in my main controller (but you could also insert it in the application class) that save the firstvisible row in the class  me->firstvisiblerowlist (that is a table)
      DATA: l_firstvisiblerowlist TYPE zmmsp_tableview_1st_visi_row.
      DATA: ff  TYPE ihttpnvp,
            ffs TYPE tihttpnvp.
      me->request->get_form_fields( CHANGING fields = ffs ).
      LOOP AT ffs INTO ff.
        IF ff-name CP 'f*visiblefirstrow'.
          READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerowlist WITH KEY name = ff-name.
          CASE sy-subrc.
            WHEN 0.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              MODIFY me->firstvisiblerowlist FROM l_firstvisiblerowlist INDEX sy-tabix.
            WHEN 4.
              IF sy-tabix = 0.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
              ELSE.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                INSERT l_firstvisiblerowlist INTO me->firstvisiblerowlist INDEX sy-tabix.
              ENDIF.
            WHEN 8.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
          ENDCASE.
        ENDIF.
      ENDLOOP.
    Than you have to provide a generic method to read the firstvisiblerow for each tableview
    GET_FIRSTVISIBLEROW
    *IM_TABLENAME
    *RE_VALUE
      DATA: l_firstvisiblerow  TYPE zmmsp_tableview_1st_visi_row.
      READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerow WITH KEY name = im_tablename.
      IF sy-subrc = 0.
        re_value =  l_firstvisiblerow-value.
      ELSE.
        re_value =  1.
      ENDIF.
    And in the DO_REQUSET of each controller you could write something like:
    * Paginator
      DATA: l_tab1_visiblefirstrow TYPE sytabix.
      l_tab1_visiblefirstrow = o_bsp_main->get_firstvisiblerow( 'f019id_tab1_visiblefirstrow'    ).
    As usual pass the value to the view via:
      o_page->set_attribute( name = 'tab1visiblefirstrow' value = l_tab1_visiblefirstrow ).
    Did you get it?

  • When I open Safari 5.1.5, it automatically opens all the pages from my previous session. Can I turn off that feature , and how?

    When I open Safari 5.1.5, it automatically opens all the pages from my previous session. Can I turn off that feature , and how?

    Hi...
    Open System Preferences > General
    Deselect:  Restore windows when quitting and re-opening apps
    Restart your Mac.

  • How do I move pages in the thumnb nail view. This was available in previous versions. Can't do it in the new version.

    How do I move pages in the thumnb nail view. This was available in previous versions. Can't do it in the new version.

    Pages v5+ is Apple's version of, “Who moved my cheese?”
    This is a brand new 64-bit rewrite redesign of the prior version. It isn't that they malevolently removed 100+ features that were user productivity habits — it is due to the fact that they haven't had time to restore 8 years of Pages evolution back into the application. The end result is the same. A largely useless product.
    It is anyone's guess what schedule priority and functionality Apple will follow with future application updates. For starters, they should set the version back to 1.0, if for no other reason, than to create an even greater cosmos between Apple Marketing and fact.
    There is no point going further. Peter has shared clarity. Apple is lost in its own funhouse of mirrors regarding desktop applications.

  • There is no longer a "close tab" under the file menu, so how do I go back to a previous page when the back button will not work?

    Often the back button will not work. I can find no "close tab" under the menus, which I think used to be there, and which is used with Internet Explorer to go to the previous page. How can I go back to the previous page with Firefox when the back button will not work?

    No you can't. Apple don't support downgrading of iOS.

  • How to open Pages files from previous versions?

    Can anyone tell me how to open a pages file I made on Pages '09?  I don't remember uninstalling that version of Pages, so I'm guessing the current version just wrote over it.  Anyway, it won't let me open those files, which is puzzling since I can open Office documents from that time period.  Thanks.

    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Note: Apple has removed over 90 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Peter

  • Recently, I updated to Firefox 4.0.1, and the new version disabled several of my programs, including my anti-virus. How can I go back to the previous version of Firefox?

    I want to go back to the previous version of Firefox, because the new version (4.0.1 I think) that I downloaded disabled several of my programs, including my anti-virus program, because they were incompatible with the new version of Firefox. How do I get back to the previous version of Firefox and re-enable the disabled programs?

    * [/questions/777886]
    Some gestures have been removed in Firefox 4.
    You can restore the zoom feature by changing the values of the related prefs on the <b>about:config</b> page.
    browser.gesture.pinch.in -> <b>cmd_fullZoomReduce</b>
    browser.gesture.pinch.in.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.out -> <b>cmd_fullZoomEnlarge</b>
    browser.gesture.pinch.out.shift -> <b>cmd_fullZoomReset</b>
    browser.gesture.pinch.latched -> <b>false</b>
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    You can use the Filter bar at to top of the about:config page to locate a pref more easily.

  • How do i upload Pages documents and folders to iCloud and make sure they sync on all my devices?

    Hi,
    I'm new to iCloud and don't really know how to use it yet.  I have a desktop Mac, a Macbook Pro laptop and an iPad.  Currently all my Pages documents are on my desktop computer.  I would like to upload them to iCloud and then have it set so that they automatically sync and I can access them on all my devices.  I want to make sure I always have the most up to date version of a document when I open it on any device, without having to update manually.  Can anyone tell me please how I do this?  Can I keep them in folders (there are a lot of documents!). 
    Also, because I just upgraded Pages and was previously using Pages 09 it keeps asking me each time I open a document if I want to upgrade it to the current Pages.  Can I somehow set this as default now so I won't keep having to say yes?
    Thanks for any help!

    To use icloud,  enable it (using the same Apple ID) on all your devices. If you move a document that already exists to iCloud, it will automatically be available to all your devices. Ditto on new doc: if you save it to icloud when you name it, it will automatically be available to all your devices.  If you make a change on one device, you'll be prompted on other devices to pick the one you want to keep,
    One BIG proviso: pages 5.1, and Pages for icloud,  are VERY BUGGY. Users here complain of corrupted files, lost data, the program hanging, etc. DO NOT user them for anything you care about.
    Also, Pages 5.1, as exhaustively documented here, is a pale shadow of Pages 4.3. Nearly a hundred features present in 4.3 are not present in Pages 5.1, including such basic things as mail merge, bookmarks, meaningful Applescript and Services support. You cannot even set the default zoom, reliably export documents with links to a PDF, or view comments while editing (nor can you print comments).  It is useless for page layout since you can no longer view a page spread, nor set alernating left/right margins and headers and footers.  A lot of advance typographical support has gone missing, too. Non contgious text selection? Gone. How many pages in your document?  You have to dig down in the little "word count" bubble (after turning it on) to find out. Why?  As an early review put it, Pages 5 is an "unmitigated disaster."
    To stop being promted to update, go to system preferences and uncheck "automatically check for updates."

  • How do I add page numbers to my document without the page numbers automatically changing. I do not want the page numbers the software automatically places into my document.

    How do I add page numbers to my document without the page numbers automatically changing? The title page is blank, I can type in 1 on the 1st typed page, but the #1 automatically goes into the next page and will not change.

    Click at bottom of the first page:
    Menu > Insert > Section break
    Click somewhere in the 2nd page (not the header/footer)
    Inspector > Layout > Section > Page Numbers > Start at 1 > Configuration > uncheck use previous headers and footers
    Click into the header or footer of the second page:
    Menu > Insert > Auto Page Numbers…
    If there is anything in the header or footer on the first page that you don't want just select it and delete it.
    If you really wanted to manual place page numbers on each page you will have to use a section break between each and every page. I can't imagine that would be useful.
    Peter

  • Say I turn off my Computer or restart it & then I load up Firefox the pages I was previously at loads up. Is there any way to turn this off ?

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    Say I turn off my Computer or restart it & then I load up Firefox the pages I was previously at loads up. This is very very very annoying & I see no options in the settings to turn this off. Is there any way to turn this off ? Even if I just press the X button to close Firefox then later in the day I open Firefox the previous pages always open & it is annoying. I apologize for the language but that is just how ''irritated'' & annoyed I am about this
    <blockquote>language cleaned up by a moderator - eh</blockquote>
    == This happened
    ==
    Every time Firefox opened
    == It started randomly
    ==
    == Troubleshooting information
    ==
    There was nothing in the Troubleshooting about this
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Default Plug-in
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Shockwave Flash 10.1 r53
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *iTunes Detector Plug-in
    *3.0.50106.0
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    Hello David.
    Go into ''Tools > Options > General > Startup:When Firefox starts:'' and configure it as you want (probably to show your home page?). This is the very first option that appears in the options screen, but I understand that it may not be very easy to find. Firefox 4 will not include any redesign to the options screen (except possibly it appearing in a tab, rather than in a popup), but you may interested to know that there are plans to redesign the options screen for versions after Firefox 4, to make it easier to use. If you want to know more about the redesign, just ask.
    Anyway, if that doesn't help (it probably does, but just in case), it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.

Maybe you are looking for

  • Regarding RFC Sender Communication Channel

    Hi All,   I am working on RFC sender channel, need some important information. 1). Can i use single RFC Sender Channel in Multiple Sender Agreements. 2). Can i use Program ID in Multiple Sender RFC Channels. I am having one RFC to File interface and

  • Use Table Name in Summary Table

    Hi, I am looking for a way to use the names of tables in another table. eq. I have tables named after the months. And I want to use this name in another table in which i summarize all the facts from the mont tables. Is there a way to refer to the tab

  • Broken glass in Puerto Rico?  Iphone glass broke and still underwarranty!

    Faceglass on iphone 5 cracked.  Heading to Puerto Rico.  Help!  Still under warranty....is there somewhere in Puerto Rico to get it fixed asap?  All the apple numbers, stores are closed in the US tonight.  Thanks!

  • HTML confusion

    Hi, I've been out of the web design business for a long while and have just been asked to advise a friend whose expensively built website is not getting much in the way of hits.   I checked the html and found that the meta tags, description and keywo

  • Migrating iTunes library from Mac to Windows

    Please bear with me if this is an obvious question. My brain is scrambled trying to wrap it around the problem... Is there a way to migrate an iTunes library from a Mac to iTunes on a Windows PC, still using the same iPod, with a mix of iTunes Store