Change to page does nogt appear in browser

I added a line to an ASP (classic) page which is supposed to say:
New: Make sure your mail meets USPS standards for optimal postage rates. Click here.
And here is the code for that line:
<td colspan="6" align="center"><div align="left"><strong><span class="style6">New:</span><span class="style8"> Make sure your mail meets USPS standards for optimal postage rates.</span><span class="style7"> <a href="Postage/Postage.html">Click here.</a></span></strong></div></td>
So, I save the file and then call in in a browser and the line is not there.  Nor is in the source code.  This is particularly strange since I can change other text on the same page and it shows in the browser.  Any help would be appreciated.

Here is the  link to the site.  As you can see, the code does not even appear in view source mode.
http://dev.franklin-press.com/

Similar Messages

  • The edit JSP page does not appear...

    Hi!
    I make a simple JSF application, I would like to show a DB table in a h:dataTable component and edit a given row after click, but the edit JSP page does not appear. I click the on link in the table, but the list is loaded again and not the edit page...:(
    (no exception in application server console)
    Please help me!
    my code:
    **************************************** listmydata.jsp***************************
                   <h:dataTable
                             value="#{myBean.myDataList}"
                             var="myDataItem"
                             binding="#{myBean.myDataTable}"
                   >
                        <h:column>
                             <f:facet name="header">
                                  <h:outputText value="Ajdi"/>
                             </f:facet>
                             <h:commandLink action="#{myBean.editMyData}">
                                  <h:outputText value="#{myDataItem.id}"/>
                             </h:commandLink>
                        </h:column>
    ********************************* MyBean.java *******************************
    package bean;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.component.html.HtmlDataTable;
    import javax.faces.context.FacesContext;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.sql.DataSource;
    import wrapper.MyData;
    public class MyBean {
         private List myDataList;
         private HtmlDataTable myDataTable;
         private MyData myDataItem;
         protected Connection Conn;
         // *********************** actions ***********************
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
         public String saveMyData() {
              try {
                   updateDataInDB();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              return "listmydata";
         // *********************** setter ***********************
         public void setMyDataList(List myDataList) {
              this.myDataList = myDataList;
         public void setMyDataTable(HtmlDataTable myDataTable) {
              this.myDataTable = myDataTable;
         public void setMyDataItem(MyData myDataItem) {
              this.myDataItem = myDataItem;
         // *********************** getter ***********************
         public List getMyDataList() {
              if (myDataList == null || FacesContext.getCurrentInstance().getRenderResponse()) {
                   loadMyDataList();
              return myDataList;
         public HtmlDataTable getMyDataTable() {
              return myDataTable;
         public MyData getMyDataItem() {
              return myDataItem;
         // *********************** others ***********************
         public void loadMyDataList() {
              try {
                   getDataFromDB();
              catch (NamingException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
              catch (SQLException e) {
                   System.out.println(e);
                   System.err.println(e);
                   e.printStackTrace();
         void getDataFromDB() throws NamingException, SQLException {
              myDataList = new ArrayList();
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement("SELECT id, name, value FROM BEA_JSF_SAMPLE");
              PreStat.execute();
              java.sql.ResultSet Rs = PreStat.getResultSet();
              while(Rs.next()) {
                   MyData OneRecord = new MyData();
                   OneRecord.setId(Rs.getLong(1));
                   OneRecord.setName(Rs.getString(2));
                   OneRecord.setValue(Rs.getString(3));
                   myDataList.add(OneRecord);
         void updateDataInDB() throws SQLException, NamingException {
              String sql = new String("UPDATE BEA_JSF_SAMPLE SET name=?,value=? WHERE id=?");
              java.sql.PreparedStatement PreStat = ownGetConnection().prepareStatement(sql);
              PreStat.setString(1,myDataItem.getName());
              PreStat.setString(2,myDataItem.getValue());
              PreStat.setLong(3,myDataItem.getId().longValue());
              PreStat.execute();
              ownGetConnection().commit();
         Connection ownGetConnection() throws SQLException, NamingException {
              if (Conn == null) {
                   InitialContext IniCtx = new InitialContext();
                   DataSource Ds = (DataSource)IniCtx.lookup("JDBCConnectToLocalhost_CRS");
                   Conn = Ds.getConnection();
              return Conn;
    ******************************* editmydata.jsp *****************************
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <html>
    <body>
    <f:view>
    <h:form>
         <h:panelGrid columns="2">
              <h:outputText value="Name"/>
              <h:inputText id="name" value="#{myBean.myDataItem.name}"/>
              <h:outputText value="Value"/>
              <h:inputText id="value" value="#{myBean.myDataItem.value}"/>
         </h:panelGrid>
         <h:commandButton action="#{myBean.saveMyData}" value="Save"/>
    </h:form>
    </f:view>
    </body>
    </html>

    I have put his lines in the faces-config.xml and now it works:
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>editmydata</from-outcome>
                   <to-view-id>editmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>*</from-view-id>
              <navigation-case>
                   <from-outcome>listmydata</from-outcome>
                   <to-view-id>listmydata.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    I don't understand, that I define the next JSP page in the bean java file, which must be shown, but I must define this in the faces-config.xml as well.
    for example:
         public String editMyData() {
              myDataItem = (MyData)getMyDataTable().getRowData();
              return "editmydata";
    is it right or Do I make a mistake somewhere?

  • Server side include does not appear in browser

    I've imbedded a server side include within an html file. I
    can see it in the Dreamweaver design previewer, but it does not
    appear when displaying the html in a browser. I've tried saving the
    included file as "html", "htm", "shtml", and "shtm". Nothing seems
    to work.
    Any guesses?

    On apache, you have to use either shtm(l), or PHP. And in the
    event that
    you use the latter, the include directives must be PHP
    includes, not HTML
    includes, e.g., this -
    <?php require('includes/foo.php') ?>
    not this -
    <!--#include file="includes/foo.inc" -->
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Dave Bar" <[email protected]> wrote in message
    news:frbps3$f6o$[email protected]..
    > Interesting you mention this, I was just experementing
    with this today.
    > I traditionally use .asp and IIS when using Include
    techniques.
    >
    > I have a client on an apache server, and they can't run
    asp, so I had to
    > test using html.
    >
    > This is what I found.
    > Since I'm running IIS, I had to use shtml (their apache
    server may run it
    > with regular html).
    >
    > I also had to make sure I was using the IIS Localhost in
    my url.
    > so this worked:
    >
    http://localhost/tests_and_examples/TEMP/TestInclude.shtml
    >
    > While this did not:
    >
    http://localhost/tests_and_examples/TEMP/TestInclude.html
    (notice the
    > missing s in shtml)
    >
    > And this did not:
    >
    file:///C:/Inetpub/wwwroot/tests_and_examples/TEMP/TestInclude.shtml
    > (Notice a regular file:/// instead of using IIS
    localhost)
    >
    > Hope that helps
    > -Dave
    >
    > "rsimmons1957" <[email protected]>
    wrote in message
    > news:frboib$dn5$[email protected]..
    >> I've imbedded a server side include within an html
    file. I can see it in
    >> the
    >> Dreamweaver design previewer, but it does not appear
    when displaying the
    >> html
    >> in a browser. I've tried saving the included file as
    "html", "htm",
    >> "shtml",
    >> and "shtm". Nothing seems to work.
    >>
    >> Any guesses?
    >>
    >
    >

  • Html page does not appear???

    I am designin a hepl page.I've written the code as follows
    but the html does not appear.Instead the panel holding the
    html is plain white.Why is this so?
    P.S: i am able to view the html in a explorer.
    Font demoFont = new Font("Serif", Font.PLAIN, 14);
        quotePane = null;
        scrollPane3 = null;
        s=null;
           try
        { s="file:\\myjava\\HELP.html";
          URL url = new URL(s);
             quotePane = new JEditorPane(url);
             quotePane.setEditable(false);
          scrollPane3 = new JScrollPane(quotePane);
             scrollPane3.setMinimumSize(new Dimension(390,490));
          scrollPane3.setPreferredSize(new Dimension(390,490));
          scrollPane3.setMaximumSize(new Dimension(390,490));
             if (DEBUG)
          { System.out.println(quotePane.getText());
               quotePane.setText(quotePane.getText());
        catch (java.io.IOException e)
        { scrollPane3 = new JScrollPane(new JTextArea("Can't find HTML file."));
             scrollPane3.setFont(demoFont);
        htmlTextPane = new JPanel();
         htmlTextPane.add(scrollPane3);
            /*htmlTextPane.setBorder(BorderFactory.createCompoundBorder(
                          BorderFactory.createTitledBorder("HTML Text"),
                          BorderFactory.createEmptyBorder(0, 5, 5, 5)
        //helppane=new JPanel();
        //htmlTextPane.setBackground(Color.magenta);
        HelpFrame=new JFrame("Help Index");
        HelpFrame.addWindowListener(new WindowAdapter()
                                 public void windowClosing(WindowEvent e)
                                   HelpFrame.setVisible(false);
        HelpFrame.getContentPane().add(htmlTextPane);
        HelpFrame.pack();
        HelpFrame.setSize(400,500);
        Container c=getContentPane();
        c.add(mainpane);

    More info ...
    Can we see the whole program please.

  • I created a book at the Ibooks author. But there are pages where the number of the page does not appear. How I can solve this problem? I thank you very much for any tip.

    I created a book at the Ibooks author. But there are some pages which the number of page is not visible. What can I do to see the number of the page?

    Have you changed the template?
    Some pages may not have numbers in place as default.  If you have changed the page or the template page, you may have added a object which as pushed the number out of view, or an image may be in a layer on top of the text.
    If you select one object on the page...then go to Edit, select all, you should see the outlines of any content no matter that content may not be seen. Look at the bottom for a page width rectangle outline.. IF its there, you need to shuffle the content until you find that box, and use Arrange > bring to front.

  • My home page keeps saying that it is out of date download latest version.after downloading the latest version the new stule home page does not appear==help!!

    home start page does not have mozilla firefox logo it says google? and when l alter it next time l log in its back to google homepage.
    l am a silver surfer so l dont understand all the technical jargons, lam at a loss why l lost my home page in the first place and why lcannot get back to it never mind the latest version lol also l noted it has http at the beginning l thought it is suppose to read https=help, thanking you in anticipation janet watkins

    See this - https://support.mozilla.com/en-US/kb/websites+or+add-ons+incorrectly+report+incompatible+browser

  • Itunes 11.1.5 synchronization page does not appear when iphone is connected to imac !

    Today I updated itunes version 11.1.5  but when I connected my iphone 5c , the synchronisation page did not appear.  I could not synchronise my phone right away from the page that it used to appear once the phone is connected.
    i can see iphone appearing on the top right hand side tab  (where you disconnect the phone)
    I can see my phone from the file tab- Synch "Amani's iphone" where I synchronised the phone.
    But I want to see all the info about my phone, and I rreally need  this page back, is it called the synchronisation page? I am not sure
    Please help. I am so annoyed with this,
    my phone software is IOS7.1
    my imac peratin system is : 10.6.8 Snow Leopard

    Hello 51kFred,
    Here is a resource that should help resolve the iPhone not showing in iTunes.
    iPhone not appearing in iTunes
    http://www.apple.com/support/iphone/assistant/itunes/#section_1
    All the best,
    Sterling

  • Cannot open any Pages documents made prior to upgrading to Yosemie. Pages does not appear in the iCloud list in system preferences.

    Upgraded to Yosemite. Upgraded Pages to latest version. Uninstalled older versions of pages (made with iWork '09). Now I cannot open any Pages documents made prior to upgrading. I keep getting the same redundant message: "You need a newer version of Pages to open this document. You can download the latest version of Pages from the Mac App Store." Not sure if this is relevant, but Pages does not show up in the iCloud list in systems preferences.

    Ok, I found pages on the iCloud drive. But the behavior of Pages is still the same, problem unchanged.

  • My "Themes" page does not appear when I play my DVD- it goes straight to playing the slideshow.

    I have never been on this forum so I am not sure what I am doing exactly. I went to the Apple store today to learn how to use iDVD. We created a "Themes" page and when I view my slideshow in iDVD everything plays together but once I burned it to a DVD and played the DVD on my computer and DVD player at home the "Themes" page does show up- it just goes straight into playing the slideshow.

    Check in the Map mode of your iDVD project to see if the slideshow has been dragged intoi the blue "Auto Play" bin.  If that's the case then that's why the findished product begins playing automatically.  Just drage it out of that bin, save as a disk image and play the disk image with DVD Player to see if the menu shows up as expected. If it does then you can burn the disk image to disk using Disk Utility as 4x or less.
    Click to view full size
    OT

  • I am getting an FTP error message when publishing, it goes okay until it reaches home page.  The home page does not appear correctly.  Any help greatly appreciated

    I have a website using iweb and am having problems publishing.  When I try to publish it appears to be going through then stops at home page and I get an FTP error message.  I talked to my website host and they checked it from their end on two brosers and it is fine.  There suggestion was to contact this support group.  They thought it had something to do with iweb code writing.

    What version of iWeb are you using?  What are you using to upload the site files to your FTP server?
    I talked to my website host and they checked it from their end on two brosers and it is fine
    What did they check?  Have you tried viewing your site that's online to see if the changes went thru?  Before you do so clear your browser's cache (Command+Option+E for Safari) and then load the site.
    OT

  • New tabs do not include the history icons as before.The option to show images on a page does not appear in upper right of page.

    The solution in the FAQ's is clear, but the small icon that is supposed to be showing in the upper right of a new Tab page are not showing up so that I can get the images to appear. I recently installed Java 7 and after that they had disappeared. Can you help me get them back? They are very helpful.

    You can reset the browser.newtab.url pref on the <b>about:config</b> page via the right-click context menu to the default value.
    You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
    You can use the SearchReset extension to reset some preferences to the default values.
    *https://addons.mozilla.org/firefox/addon/searchreset/
    Note that the SearchReset extension only runs once and then uninstalls automatically, so it won't show on the "Firefox > Add-ons" page (about:addons).

  • Edit web part option does not appear in browser on lists

    I've inserted some lists on a wiki page. However, when viewing in the browser the checkbox and the dropdown containing the Edit Web Part option do not appear. On the properties tag I thought I enabled all the correct properties such as Allow Edit, Allow
    Minimize etc. What am I missing?

    Hi Larry,
    According to your description, my understanding is that the Edit web part option disappeared in the list web part.
    I recommend to check if the account has permission to edit the web part, please check the permission of the account in Site Permissions and the list permissions.
    Please also check if the target audience is set in the web part.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Home page does not appear as it actually is in Contribute

              I am unable to view my web page in Contribute as it appears on the internet

    Hello There,
    Welcome to Adobe Forums!
    Please try to clear the Cache and temp files from your computer .
    Can you tell me the version of contribute you are using ?
    Can you tell me are you using a windows or a mac?
    Thanks and Regards
    Himanshu Satija

  • Lock does not appear in browser for JSP secured by SSL???

    Could someone please let me know how I can get the SSL lock to appear in the broswer when displaying my JSP that appears within a frameset page???
    When I access the page without frames, there is no problem - I get the lock.
    I have made sure that all pages are within the same folder and that all links specified within the pages have HTTPS and not HTTP.
    Please help with any tutorials, references, or suggestions that could assist me in solving my problem.
    Thank you!

    Found solution...

  • I have Acrobat XI and am trying to add pages to a pdf. Tutorials instruct to use Tools, Options or Page Thumbnail to get to a drop down command of Insert Page, does not appear as my choices.

    I have Acrobat XI and am trying to add pages to a pdf. Tutorials instruct me to use Tools, Options or Page Thumbnail to get to a drop down command of Insert Page, but I have few choices in any of those places and Insert Page is not any of them.

    What do you see, then?
    On Thu, Feb 26, 2015 at 4:14 PM, lindab5415 <[email protected]>

Maybe you are looking for