Page Number does not display on every page

I am having a problem showing the page number on every page. I can get it to show on the first page if I place the XML tags at the top OR if I place the XML tags at the bottom then it shows only on the last page.
I tried to use the <?body-start?><?body-end?> tags and placing the page number in front of or behind these. I have tried to insert the native word page number functionality as well as <?fo:page-number?> and get the same results.
Any help would be greatly appreciated -
Thanks,
Rob

I have inserted the page number in the RTF and it definitely shows up on the first page but not on any of the following pages.
As a side note - if I use Word's header and put anything up there it does not show up at all on the template.

Similar Messages

  • Phone number does not display in Lync Contct Card on mobile devices

    Good day for all!
    I faced with strange issue with Lync Contact card on mobile devices.
    We have installed Lync Server 2013 (with last CU (December 2014)) and Exchange server 2010 SP3 (Rollup 4)
    All lync enabled users have filled AD attribute telephoneNumber  - 4-digit internal work phone.
    this work phone has shown correctly in Lync Contact card on Lync 2013 desktop client, but it does not display for some users on Lync Mobile clients (Lync for Android, Windows Phone and iOS)
    May be someone have an idea why this is happening and what is going wrong for me?
    Thanks in advance!
    P.S. sorry for my English.
    P.P.S I cannot submit screenshot with problem because "Body text cannot contain images or links until we are able to verify your account"

    Hi,
    It can be the issue caused by the privacy relationship.
    Please check if others set the relationship for these issued users to be workgroup. If not, change it. For these issued Lync users, on their desktop client, also make sure the relationship set to be workgroup.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • My Online Number Does Note Display When I Call Out...

    I have been told by people I call that their phones do not display my online #. They see Unknown Number or Number Available or Another # I do not recognize.
    This is a new problem for me. I have had the same online # for over a year.
    Thoughts?

    This so full of BS on Skypes part, I have to constantly come to my settings on this web site to reinactivate caller ID, it is the only place to do it, there is no setting on the app itself. First, why is the setting not being saved?  Who is turning it off? Why do I have to go this website to activate it and same with the voicemail message greeding? Should be done via app! 

  • Device phone number does not display on Blackberry

    Even though the option is set to yes, display phone number, it shows on the device as unknown. The devices are on a BES.  Does anyone have any thoughts on this?
    Thanks
    Solved!
    Go to Solution.

    If you go under Options | Advanced Options | SIM Card, does it show the phone number there?
    Also in this screen if you hit the menu button go into Edit SIM Phone Number and type in the device's phone number. If the number still isn't showing up try resetting the device by removing the battery for 1 minute and replacing it.
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Windows Phone 8.1 xaml, c# ComboBox does not display selection when first item is selected from full page list.

    I have 3 comboboxes on a xaml page and most of the time when I select the first item on the full page list displayed when the number of items are > 5, the screen returns to the combobox and the box is blank. The combobox.SelectedItem is valued but it
    does not display.  This does not happen every time and I have seen this using the emulator and my windows 8.1 phone.  If I select any other item in the list they always display but when I go back and select the first item the box is blank. 
    Does anyone know what I could be doing that is causing this?

    Thanks for your help.  When I run the code below and the page is displayed, I select an item from the page list and it displays fine and then I select the first item from the page list and I do not see that selected item in the box. 
    If I remove the SelectedIndex=0 it all works fine except I do not have an item selected for the initial display.  Below should show problem and should work copy/paste in universal blank app.
    ScrollViewer x:Name="scrollViewer1">
            <StackPanel x:Name="stackPanel1" Background="Transparent">
                <ComboBox x:Name="comboBoxTestTypes" Margin="20,117.75,0,465.25" SelectedValuePath="ItemDescription" Width="310" Height="Auto" FontSize="17"
           ItemsSource="{Binding}" HorizontalAlignment="Left" VerticalAlignment="Center">
                <ComboBox.ItemTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding ItemDescription}" />
                    </DataTemplate>
                </ComboBox.ItemTemplate>
            </ComboBox>
     </StackPanel>
        </ScrollViewer>
    public sealed partial class MainPage : Page
            public ObservableCollection<ItemDetail> itemDetail;
            public MainPage()
                this.InitializeComponent();
                this.NavigationCacheMode = NavigationCacheMode.Required;
                this.itemDetail = new ObservableCollection<ItemDetail>();
            protected override void OnNavigatedTo(NavigationEventArgs e)
                PageLoad();
            public class ItemDetail
                public string ItemDescription { get; set; }
                public string ItemName { get; set; }
            private async void PageLoad()
                await initializeTypes();
                var comboBoxTestTypesItemsSource = await GetTestTypes();
                comboBoxTestTypes.ItemsSource = comboBoxTestTypesItemsSource;
                comboBoxTestTypes.SelectedIndex = 0;
            private async Task initializeTypes()
                await addTestType("Item1");
                await addTestType("Item2");
                await addTestType("Item3");
                await addTestType("Item4");
                await addTestType("Item5");
                await addTestType("Item6");
            private async Task<ObservableCollection<ItemDetail>> GetTestTypes()
                //ObservableCollection<ItemDetail> list = new ObservableCollection<ItemDetail>();
                //Random rnd = new Random();
                //for (int i = 0; i < 50; i++)
                //    list.Add(new ItemDetail() { ItemDescription = "hello" + rnd.Next(0, 1001), ItemName = rnd.Next(0, 101).ToString() });
                await getSaveDataFileDataAsync("get");
                return itemDetail;
            private async Task addTestType(string description)
                int newIdAdd = 0;
                if (itemDetail != null && itemDetail.Count > 0)
                    newIdAdd = itemDetail.Max(mT => Convert.ToInt32(mT.ItemName)) + 1;
                var addTestType = new ItemDetail();
                addTestType.ItemName = newIdAdd.ToString();
                addTestType.ItemDescription = description;
                itemDetail.Add(addTestType);
                await getSaveDataFileDataAsync("save");
            private async Task getSaveDataFileDataAsync(string getSave)
                try
                    DataContractJsonSerializer jsonSerializer1 = null;
                    string dataFileName1 = "testFileName";
                    jsonSerializer1 = new DataContractJsonSerializer(typeof(ObservableCollection<ItemDetail>));
                    if (jsonSerializer1 != null && getSave == "get")
                        using (var stream1 = await ApplicationData.Current.LocalFolder.OpenStreamForReadAsync(dataFileName1))
                            itemDetail = (ObservableCollection<ItemDetail>)jsonSerializer1.ReadObject(stream1);
                    if (jsonSerializer1 != null && getSave == "save")
                        using (var stream1 = await ApplicationData.Current.LocalFolder.OpenStreamForWriteAsync(dataFileName1, CreationCollisionOption.ReplaceExisting))
                                jsonSerializer1.WriteObject(stream1, itemDetail);
                catch

  • JSP error page does not displayed on its own, includes in the original JSP

    Problem Description: - Exceptions in a Condition cause pages to fail to render.
    The actual issue is, the JSP error page does not displayed on its own, included in the original JSP Page when exception occurs.
    Problem Cause: As per the JSP specification when jsp content reached the buffer size (default 8KB) the page being flushed (Part of condent displays). The default �autoFlush� value is true.
    When the page buffer value is default size (8KB), and if any exception occurs after flushing the part of the content, instead of redirecting into error page, the error page content included in the original page.
    If i specify autoFlush="false" and with default buffer size, at the runtime if the buffer size is reached, i am getting stackoverflow error.
    To solve the above problem we can make it autoFlush=�false� and buffer=�100KB�. But we can�t predict the actual size of the page.
    I found in one of the weblogic forum as no solution for this issue. Ref.
    http://support.bea.com/application?namespace=askbea&origin=ask_bea_answer.jsp&event=link.view_answer_page_clfydoc&answerpage=solution&page=wls/S-10309.htm
    Please provide me any solution to resolve the problem.

    Error-Page tags work best with an error.html pages. If you have an error.jsp page what I would do, and I have, is wrap my classes and jsp pages in a try catch block where you forward to the error jsp page and display anything you want. YOu can also do this with if else statements. I have used the tomcat error pages before but when I've implemented them I used java.lang.Exception as the error to catch not Throwable. I don't know if this would make a difference or have anything to do with your problem.

  • Content does not display when page first opened

    Hi All;
    I have a contenta are/region which I have divided into multiple tabbed areas. I have two main tabs that divide the content into two major topics. Within each of these main areas I have added 4 to five tabs. One set for example holds a calendar, another tab a news release area and a third a content area for holding multiple folders of a department's documentation. The problem I am encountering is that when I first bring up the page all I see are the tabs and no matter what tab area is exposed the content within it is not displayed. For example, I start with the Calendar tab active (the calendar does not display). I then click on to say the document area, which displays all of its content's correctly. When I return to the calendar tab the calendar is displayed. My question... how can I ensure that the calendar (or any other tabbed area's content is displayed when the user first brings up the page?
    PS. This is a hot topic since I will be demoing my pages to my managers next week in an effort to convince them that Oracle Portal is the way to go.

    When I email the page to our server, the href links are missing.
    You email the page to the server?  What does that mean?
    MaureenHayslett wrote:
    I am using CS3 on Mac OS 10.6. The page previews perfectly in Safari. When I email the page to our server, the href links are missing. For example, the banner doesn't use the correct font, and the background color the the whole page is missing. Please go to http://www.crhcarchives.org/links.html
    All of the other pages on the website look correct. Thank you.
    Look at the source on that page.  There is virtually no styling on it....
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
    <style type="text/css">
    <!--
    .style16
         {font-size:14px}
    -->
    </style>
    </head>
    There is nothing telling the page which fonts to use, or which colors to use.  Are you sure you have uploaded the correct page?

  • Ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    ibooks author, how do I get the standard book pages background into my document. I have published one book so far which does not display with a book pages background or options for font size.

    No on the book title, no problem there.
    The issue is: my book pages appear as on white paper, no background that resembles a open book and also no option to change fonts. The book was created in iBooks author, there was a problem going with the "Publish" menu route so I was instructed my Apple to "export" the file and submit that. I think that's the problem after reading that iBooks author is a hybrid epub file.
    Thanks for getting back to me.

  • SSLVPN in IE 8 or 9 does not display login page

    Hi all,
    I have a working setup with a customer using UC560 that uses SSLVPN and it works but only when using other browsers like Firefox and google chrome, when we try using IE version 8 or 9 we get prompted about the security certificate (the usual, as it's https) and after making the exception it does not display the login page, just this: Internet Explorer can't display this website, and that's about it, don't even get the chance to login nor download the anyconnect client, anyone know if there's a patch or something for this?

    Hi Bryan,
    thanks for your response, unfortunately it's a UC560 not an SA500 so i don't have those options, so far I haven't found configuration options that deny IE or someting like that, it really is a weird problem and it's though to troubleshoot.
    When I do debug webvpn http and try to enter the webpage with IE it shows this:
    077696: Mar 26 19:35:09.841: WV-HTTP: Fragmented header-line
    077697: Mar 26 19:35:09.841: WV-HTTP: HTTP request line too long
    077698: Mar 26 19:35:09.841: WV-HTTP: Deallocating HTTP info
    and when i do the same debug but enter the webpage using firefox or google chrome it succeeds, sending this debug output:
    102796: Mar 27 18:37:02.411: WV-HTTP: Original client request
    GET / HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102797: Mar 27 18:37:02.411: WV-HTTP: HTTP Header parsing complete
    102798: Mar 27 18:37:02.411: WV-HTTP: * HTTP request complete
    102799: Mar 27 18:37:02.431: WV-HTTP: Original client request
    GET /webvpn.html HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102800: Mar 27 18:37:02.431: WV-HTTP: HTTP Header parsing complete
    102801: Mar 27 18:37:02.431: WV-HTTP: * HTTP request complete
    102802: Mar 27 18:37:02.515: WV-HTTP: Original client request
    GET /paramdef.js HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102803: Mar 27 18:37:02.515: WV-HTTP: HTTP Header parsing complete
    102804: Mar 27 18:37:02.515: WV-HTTP: * HTTP request complete
    102805: Mar 27 18:37:02.523: WV-HTTP: Original client request
    GET /lang.js HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102806: Mar 27 18:37:02.523: WV-HTTP: HTTP Header parsing complete
    102807: Mar 27 18:37:02.523: WV-HTTP: * HTTP request complete
    102808: Mar 27 18:37:02.547: WV-HTTP: Original client request
    GET /shared.js HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102809: Mar 27 18:37:02.547: WV-HTTP: HTTP Header parsing complete
    102810: Mar 27 18:37:02.547: WV-HTTP: * HTTP request complete
    102811: Mar 27 18:37:02.671: WV-HTTP: Original client request
    GET /img/logo.gif HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102812: Mar 27 18:37:02.671: WV-HTTP: HTTP Header parsing complete
    102813: Mar 27 18:37:02.671: WV-HTTP: * HTTP request complete
    102814: Mar 27 18:37:02.675: WV-HTTP: Original client request
    GET /img/login_photo.jpg HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102815: Mar 27 18:37:02.675: WV-HTTP: HTTP Header parsing complete
    102816: Mar 27 18:37:02.675: WV-HTTP: * HTTP request complete
    102817: Mar 27 18:37:02.895: WV-HTTP: Original client request
    GET /favicon.ico HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102818: Mar 27 18:37:02.899: WV-HTTP: HTTP Header parsing complete
    102819: Mar 27 18:37:02.899: WV-HTTP: * HTTP request complete
    102820: Mar 27 18:37:02.907: WV-HTTP: Original client request
    GET /webvpn.html HTTP/1.1
    user agent is:Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Ge
    102821: Mar 27 18:37:02.907: WV-HTTP: HTTP Header parsing complete
    102822: Mar 27 18:37:02.907: WV-HTTP: * HTTP request complete.
    I wonder what difference do they have in the HTTP request line length, probably a browser problem, I'll keep looking into it like it's the browsers fault for now.

  • Screen briefly flashes white but does not display the page when the Safari icon or other icons are tapped.

    A problem has just started with my IPAD Air after 3 months of use.
    If I try to open Safari by tapping on the icon the screen  briefly flashes white but does not display the page.
    Similarly if I try to open Settings page, Mail page, Calendar or Clock the screen just briefly flashes but the Apps do not run.
    Some of the Apps do work on tapping the icon e.g. Maps, iBooks, Appstore, iTunes, Newstand etc.
    I do have some website links which display when the icon is tapped e.g. John Lewis but some links do not work.
    I have ensured that the ipad is fully charged,  powered it off an on again, and cleaned the screen with a lint free cloth  but the
    same problem keeps occurring.

    I saume you used a second display at one time, otherwise the Display settings wouldn't be treating your primary display as a secondary.
    IF you open your System Preferences>Displays (-System Preferences) and click "Gather Windows" it should pull everything to the display on which you clicked it.

  • RE: my input fields does not display when running the page

    my input fields does not display when running the page
    why is that so?

    Hi,
    Can you send the HTML code for us?
    Afonso

  • When at the "results" page of a search, clicking on "blue" link does not display webpage. Copying "green" urldoes.

    When at the "results" page of a search, clicking on "blue" link does not display webpage although url is shown in address bar. Copying "green" url, shown at bottom of a result, into address bar and hitting "enter" goes to the address and displays the page. Have tried different selections at tools/options with no change. Is there some other setting that needs to be changed?

    Sorry, this is bad reply. I wanted to write this reply to another question.

  • When I test the web dynpro page, the browser does not display it !

    Hi all,
    I have (SAP EHP 2 for SAP NetWeaver 7.0) trial version installed in my laptop.  Lately, I took course NET310 about web dynpro.  I started doing the exercises but when I test my work, the browser (Internet Explorer 8) does not display the page I created but it displays a page has the following message (Internet Explorer cannot display the webpage).  When I installed the SAP, one of the requirements was (Domain), so I entered one but the one I entered does not exist.  If this is the issue, then I have to create a domain with the same name but how can I do this in my laptop? (my laptop has Windows 7)

    Hi Anil
    the page shows the following:
    Bar Address:
      http://tip-pc.ahmed.com:8000/sap/bc/webdynpro/sap/znet310_intr_00?sap-language=EN
    Page:
      Internet Explorer cannot display the webpage
    What you can try:
       Diagnose connection Problem (button)
    More information
    This problem can be caused by a variety of issues, including:
    u2022Internet connectivity has been lost.
    u2022The website is temporarily unavailable.
    u2022The Domain Name Server (DNS) is not reachable.
    u2022The Domain Name Server (DNS) does not have a listing for the website's domain.
    u2022There might be a typing error in the address.
    u2022If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section.
    For offline users
    You can still view subscribed feeds and some recently viewed webpages.
    To view subscribed feeds
    1.Click the Favorites Center button , click Feeds, and then click the feed you want to view.
    To view recently visited webpages (might not work on all pages)
    1.Click Tools , and then click Work Offline.
    2.Click the Favorites Center button , click History, and then click the page you want to view.

  • Photos page does not display photos in some browsers

    Hi All:
    I published my "Photos" page,
    http://web.mac.com/funkyoldude/
    It appears to work fine on Opera v. 9.24, Firefox v.2.0.0.7, and Safari v. 2.0.4.
    It does not display my photos on Mac IE v. 5.2, AOL v.10.3, and Mozilla v. 1.7.13
    On these browsers I get the message:
    # Exception: ReferenceError
    # Message : detectBrowser is not defined
    Any ideas? That's a lot of folks that can't view my webpage.

    Hi
    Welcome to Apple Discussions
    Best way to reach Apple is to send a Bug Report via the Safari Menu>Report Bugs to Apple. While Apple doesn't respond directly to these notes, the information gets in the hands of Software Engineers at Cupertino.
    Specific to the referenced site, there are multiple code errors, which would contribute to the rendering problem. Safari is a lot more specific about following correct code than other browsers. I suggest passing the Validation report on to the site developers. Good code practices (W3) makes for better uniformity and security on the Internet.

  • Page does not display properly in 3.0.4

    If someone from apple reads these postings, the following page does not display properly in Safari 3.0.4 with mac os leopard.
    I can not find an email to email directly to you.
    http://bigten.cstv.com/sports/m-wrestl/spec-rel/021308aab.html

    Hi
    Welcome to Apple Discussions
    Best way to reach Apple is to send a Bug Report via the Safari Menu>Report Bugs to Apple. While Apple doesn't respond directly to these notes, the information gets in the hands of Software Engineers at Cupertino.
    Specific to the referenced site, there are multiple code errors, which would contribute to the rendering problem. Safari is a lot more specific about following correct code than other browsers. I suggest passing the Validation report on to the site developers. Good code practices (W3) makes for better uniformity and security on the Internet.

Maybe you are looking for

  • Linking to a page with a URL hyperlink

    Is it possible to create a hyperlink that links to another page in the same document using the "Link To: URL" option in the New Hyperlink window? Normally I'd just use the "Link to: Page" option but I want to upload a bunch of documents to Issuu and

  • Front row on yosemite

    I'm trying to use the Menu button from the remote control and it doesn't display anything, the rest of the buttons work ok but Front Row doesn't show up. Is it disable on Yosemite system?

  • Ipad not hooking up to my computer

    ipad mini not hooking up to my computer

  • Using headers as references - issues

    are other people having lots of issues using headers as references? the 2 main problems i see are: - in simple ( e.g. a+b/c) type formulae, numbers can get confused when it references absolute cells, i think this is caused by the header containing sp

  • Won't display Album Art while playing music and the screen is Locked

    So what's happening is that while I'm playing music and I lock the iPod, it won't display the album art. Only my wallpaper, which is one of the wallpapers that come with the iPod.