Hp P1102w html config is not displaying​/being interprete​d (source code only)

As the subject heading says, I am trying to configure an HP P1102w for wifi based printing in my local network.  But the html config page is not displaying (from the MacOS printer utility.)  I have updated the firmware of the printer.  The printer shows up when I connect it to my Mac through USB.  My Mac is running OS 10.6.8.  Thanks for your help.

Hi,
Reboot your MAc and try again.
If the same persists, click the Apple icon and then click on Force Quit.
If there is any HP task running, terminate the task and try launching the HTML Config tool once again.
Shlomi
Say thanks by clicking the Kudos thumb up in the post.
If my post resolve your problem please mark it as an Accepted Solution

Similar Messages

  • Html emails are not displaying. they just show the code. text emails don't display at all. what's up?

    suddenly today my email won't display properly. html emails just display the actual html code instead of a graphic display. Text emails just show a blank page. I have changed the View setting to show messages as original html, simple html and plain text. None of the settings restores things. All these emails were viewable properly yesterday.
    Anyone got any ideas as to what's up?

    sounds like your index and the data are out of synch. Often the result of anti virus activity either blocking the update of the index or quarantining the whole inbox so there is no mail left to display.
    Right click the folder, select properties and then the repair button.

  • Some HTML Emails Do Not Display Properly

    Recently, some HTML emails do not display properly in Mail. All I see is HTML. Yet, 98% of my HTML emails render properly.
    Any thoughts on why this happens with some emails? Is it a Mail issue or are these emails not coded properly?

    Hello Tony.
    Could be a combination but since Mail renders 98% of of all HTML messages properly (using Safari as the engine), this indicates it is a coding problem.
    I'm not a big fan of using HTML with email since it introduces a number of problems. If everyone used Plain Text for message composition, the majority if not all problems experienced with email would be eliminated.

  • Xletview: why not use sun's javaTV source code directly ?

    xletview : one emulator for viewing MHP Xlets on a PC;
    I see many difference from sun's code about the part of javaTV.
    Why the author Martin Sveden need to rewrite them and not use sun's javaTV source code directly ?
    Thank you for your any answer.
    Sorry for my horrible english.

    XleView is a fine effort, but it has its limitations. I tried using it for the GunBunny demo available in the JavaME SDK 3.0 Eary Access available in
    http://java.sun.com/javame/downloads/sdk30ea.jsp
    and I encountered some of thost limitations. What Sveden does it several tricky manipulations in a classloader for the Xlet. In particular, he translates bytecode as he loads the Xlet's classes, changing some class names, such as changing
    java.awt.Toolkit
    tto
    xjava.awt.Toolkit
    This works up to a point. This version of Toolkit usually just turns around calls java.awt.Toolkit's corresponding routine, but he deliberately he does not implement the ubiquitous
    public Image createImage(URL url)
    When I downloaded his source and tried adding ths into his code, I then encountered at runtime
    Uncaught error fetching image:
    java.lang.NullPointerException
    at sun.awt.image.URLImageSource.getConnection(URLImageSource.java:97)
    at sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:107)
    at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
    at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
    at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
    I think that this is some optimization within J2SE where they do not wait for the image to load and do the fetching in a separate thread. I do not know if there is some way to force the Sun's JVM to disable this optimization and I have not investigated furher, but I did email Svenden. I noticed that the current version of XleTView is 0.3.6 which is dated June 2004 and the web site http://www.xletview.org/ has had not news since 2005 .
    I note that Svenden provides an elegant user interface but I advise you not try to learn the API's from his classes: he makes no effort to keep his implementation separate from the API standards so, for instance, his version of HScene is
    package org.havi.ui;
    public class HScene extends Container
    implements HComponentOrdering, ImageObserver, MenuContainer, Serializable {
    whereas the real standard is
    public class HScene extends Container
    implements HComponentOrdering {
    I hate to critize such a fine effort, but it is best to keep an imlementation separate from the public API.
    I agree that having a lightweight, simple and Java feature-complete Xlet viewer running would be very helpful, especially if BD-J gains much popularity. I have found trying to work with the vendor players described at
    http://wiki.java.net/bin/view/Mobileandembedded/Blu-RayDiscHelloWorld
    to be frustrating. I tried all four mentioned and I have gotten none of them to work for me yet. These are huge downloads and the "Intro Version" of Arcsoft pointed to at the SDK 3.0 Early Access page
    http://www.arcsoft.com/products/totalmediatheatre/
    just gives a "File not found" HTML page. This forum post mentions that perhaps it was recently taken down?
    http://www.arcsoft.com/forum/forum_posts.asp?TID=1084
    I have already emailed Michael Downs of Arcsoft since he is mentioned here:
    http://wiki.java.net/bin/view/Mobileandembedded/BDJPCPlayers
    What did work for me was to take Sun's JavaTV 1.1 Reference Implementation and PowerDVD's BDJ.jar and hack/fix a few classes to get GunBunny to work within the RI's RunXlet program. This is not trivial but I will will describe:
    Download the JavaME 3.0 SDK EA and then download the correct version of PowerDVD that the SDK page points to:
    http://www.brothersoft.com/powerdvd-download-50794.html
    Download the RI binary and source of Java TV API 1.1
    http://java.sun.com/javame/technology/javatv/index.jsp
    Since I am too lazy to use anything but the latest 1.6 JRE as a runtime, I have to fix
    com.sun.tv.media.util.MediaThread
    to comment out its stop() method. This is becase stop() was deprecated and made final in J2SE 1.5
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Thread.html#stop()
    http://java.sun.com/j2se/1.5.0/docs/guide/misc/threadPrimitiveDeprecation.html
    Next, I had to mae a change to Sun's JavaTV implementation to keep the GunBunny demo happy by providing a ServiceContext. The RunXlet program calls SIEmulator, but that environment does not provide a ServiceContex, so I added one back in:
    com.sun.tv.receiver.SIEmulator
    private static ServiceContext svcctx = null;
    Add before every call to new AppSignalEvent() and add the svcctx as the second-to-last argument:
    if(svcctx == null){ try { svcctx = new com.sun.tv.ServiceContextImpl(); }catch (Exception e){ e.printStackTrace(); } }
    I then had to hack a few PowerDVD classes, which is evil of me. First, I had to build an empty class by the name of
    sun.util.BDJPlugin
    becuase some PowerDVD class extends it but it is not in its BDJ.jar and then I had to reverse-compile (evil!) and modify one of their internal classes to avoid a dependency on their native methods. What I ended up with was a hacked version of com.cl.bdj.helper.CUtil to avoid the native methods which access the registry where they query for registry settings but also provide a default value (which I return).
    com.cl.bdj.helper.CUtil
    private static String pGetRegistryString(long i ,String string ,String string3) {
    return string3;
    private static int pGetRegistryInt(long i ,String string ,int j) {
    return j;
    The last thing I had to do was to change com.hdccookbook.gunbunny.BaseXlet, to use the JavaTV container rather than the org.havi one:
    import javax.tv.graphics.TVContainer;
    import java.awt.Container;
    change
    // protected HScene scene;
    protected Container scene;
    public final void run() {
    // waitForPresenting();
    // scene = HSceneFactory.getInstance().getDefaultHScene();
    scene = TVContainer.getRootContainer(xletContext);
    In order to having working keys, I had to add the KeyListener interface to BaseXet and
    run(){
    addKeyListener(this);
    and then add a near duplicate of the org.dvb.event.UserEvent* stuff that is already there:
    public void keyPressed(KeyEvent e){
    switch(e.getKeyCode()){
    case KeyEvent.VK_0:
    case KeyEvent.VK_1:
    case KeyEvent.VK_2:
    case KeyEvent.VK_3:
    case KeyEvent.VK_4:
    case KeyEvent.VK_5:
    case KeyEvent.VK_6:
    case KeyEvent.VK_7:
    case KeyEvent.VK_8:
    case KeyEvent.VK_9:
    numberKeyPressed(e.getKeyCode() - KeyEvent.VK_0);
    break;
    case KeyEvent.VK_ENTER:
    enterKeyPressed();
    break;
    case KeyEvent.VK_LEFT:
    arrowLeftKeyPressed();
    break;
    case KeyEvent.VK_RIGHT:
    arrowRightPressed();
    break;
    case KeyEvent.VK_UP:
    arrowUpPressed();
    break;
    case KeyEvent.VK_DOWN:
    arrowDownPressed();
    break;
    public void keyReleased(KeyEvent e){
    // System.out.println("Released: e="+e+" code="+e.getKeyCode());
    public void keyTyped(KeyEvent e) {
    // System.out.println("Typed: e="+e+" code="+e.getKeyCode());
    It then comes up and functions, but the rendering is not very good. Again, this is complete hack. Running the Java TV 1.1 RI in a JRE 1.6 is not supported. If you try to run any of the other examples, you will discover that the XML parsing is broken in JRE 1.6 with this message:
    Parsing failed: com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequence
    Exception: Invalid byte 1 of 1-byte UTF-8 sequence., file: lib\JavaTVSampleFile01.xml
    and you have to go and change the lines in
    lib\JavaTV.properties
    from
    ServiceFileHandler=com.sun.tv.receiver.ReceiverFile
    # ServiceFileHandler=SampleData_01
    to
    # ServiceFileHandler=com.sun.tv.receiver.ReceiverFile
    ServiceFileHandler=SampleData_01
    and build samples\db\SampleData_01.java and put it in your classpath along with all these other hacks.
    Nonetheless, if you want to develop a somewhat generic Xlet that uses some BD-J features, that is how you might do it. But the moment you exercise anything else in the vendor's BDJ.jar that simply doe snot work outside of their environment or invokes one of their native methods, you are again stuck.
    It would be nice if Sun would at least bother to update the JavaTV RI with the fixes I hae mentioned. Their "jmflite" implementation does not render perfecly but at least it would give the programmer something to work with without having to deal with an older JRE, etc.
    Andrew
    Edited by: AndrewMorrow on Oct 20, 2008 2:48 AM

  • Using wysiwyg text editor in drupal the latest firefox does not wrap text when viewing source code-chrome ie ok

    Using drupal ckeditor profile with wysiwyg . Firefox latest version is apparently not respecting the width of the i-frame text editor box and the text is not wrapping when viewing in source code mode. Chrome and IE are working as expected. Windows 7

    [https://support.mozilla.org/en-US/kb/where-go-developer-support Where to go for developer support]

  • LaserJet P1102w: HTML Config page errors out

    I was using my LaserJet P1102w via wireless fine, until my wireless router died. When I replaced it, I tried to set up the printer on the new network but I get an error when I try to open the "HTML Config ..." utility. The page itself won't load.
    I've printed the config page on the printer, and it says it has an IP address, but it still thinks it's connected to the old network. Is there a way to reset the printer itself?

    Hi,
    Be sure to restore the Wireless Radio firs by turning the printer on while holding both the Wireless and Cancel buttons.. keep the buttons pressed till the lights between them start blinking.
    Next try usin HTML Config again and check for any difference.
    If the same persists, try clearing the browser history by clicking on Safari > Reset Safari.
    Be sure to remove any existing caches and cookies.
    Quit Safari to ensure it takes effect, then try alunching HTML Config once again.
    Hope that helps,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • German Special Characters not displayed correctly in RTF  using code

    Hi ,
    In my code we are using webdynpro method
    WDResourceFactory.createResource(
    byte[] data, String resourceName,WDWebResourceType
    Type)
    Here in our code we are implementing this as
    ITemplateElement templateEl = wdContext.currentTemplateElement();
    WDResourceFactory.createResource(
    templateEl.getReportData(),
    reportName.substring(0, reportName.lastIndexOf('.')),
    WDWebResourceType.RTF); reportName.lastIndexOf('.')),
    Here templateEl.getReportData() returns a set of bytes which has some
    german special characters.
    We are generating the Bytes using String.getByes(),Just before
    String text = new String(in);
    collector.putBusinessObject(boName, bo);
    reportDocTemplateParser(collector, text);
    collector.removeBusinessObject(boName);
    String generatedText = collector.generateRTF();
    out = (null != generatedText) ? generatedText.getBytes() : null;
    The out put is the if i am giving a word with german special characters for eg:
    Betriebsübersichten it first gets converted to bytes and then passes through method WDResouseFactory.createResourse(.....) which creates an RTF file and finally in the RTF file it appears as Betriebsbbersichten the special character is not displayed correctly.
    i came to knw that while converting into bytes we have to make it RTF supported encoding.ie for eg generatedText.getBytes('cp1252').i even tried with other charactersets like ISO-8859,cp1253 and so on but none of them worked.
    It would be really great if you could suggest the needful.
    Thanks and Regards
    Neeta

    I soved this by using get_data function of response object. Then converting this into ISO-8859-1 charset.
    See code below.
    DATA :  lv_encoding   TYPE abap_encoding,
              lv_conv       TYPE REF TO cl_abap_conv_in_ce,
              lv_x_string   type xstring.
      lv_x_string = pv_http_client->response->get_data( ).
        lv_encoding = '1100'.
        lv_conv = cl_abap_conv_in_ce=>create(
                              encoding = lv_encoding
                                 input = lv_x_string ).
        lv_conv->read( IMPORTING data = pv_result ).

  • Fonts used in HTML rendered components not displayed

    Hi all,
    I have a problem using fonts in components with text that is being rendered by the HTML renderer.
    It's the exact same problem as described in this topic;
    http://forum.java.sun.com/thread.jspa?forumID=257&threadID=222691
    but no solution found...
    When I do this, my font isn't displayed (only the default SansSerif font is used at this point);
    JLabel label = new JLabel("<html>a text</html>");
    InputStream fontStream = getClass().getResourceAsStream("SystemVIO.ttf");
    Font font = Font.createFont(Font.TRUETYPE_FONT, fontStream);
    label.setFont(font.deriveFont((float)12));SystemVIO is placed in a JAR-file (loaded in my classpath).
    And when I do this, it is displayed correctly;
    InputStream fontStream = getClass().getResourceAsStream("SystemVIO.ttf");
    Font font = Font.createFont(Font.TRUETYPE_FONT, fontStream);
    JLabel label = new JLabel("<html>a text</html>");
    label.setFont(font.deriveFont((float)12));But the real problem here is, if one component is made with a HTML renderer, none of the other components can use a font if it's loaded after the FIRST component with HTML renderering is constructed.
    So, for some reason, the fonts aren't reloaded in the HTML renderer (is the html renderer native?) whenever I use createFont().

    Hi Sundar,
    if I understand your post properly, what your are doing in your BSP is executing a procedure to create an Adobe document, and then placing that document into the HTTP response.
    If you have built this code by following some of the blogs in SDN, you probably do something like...
    response->set_header_field( name  = 'content-type'
                                value = 'application/pdf' ).
    l_pdf_len = XSTRLEN( l_pdf_xstring ).
    response->set_data( data   = l_pdf_xstring
                        length = l_pdf_len ).
    navigation->response_complete( ).
    What this code does is change the type of the HTTP response to 'application/pdf', set the content of the HTTP repsonse to the PDF data stream, and finally signal the HTTP runtime that processing has completed.
    Once processing has been completed control is returned to the HTTP runtime. This means any further 'down-stream' code in your BSP will not be executed. This includes the Layout section of your BSP.
    It is not possible to send two responses, PDF data and HTML data, to a single HTTP request. If you want to show both on the same web page you need to embed the Adobe document into the HTML page using frames or some other method.
    Cheers
    Graham Robbo

  • Simple text edit html files will not display as web pages using Safari

    How does one get Text Edit files saved as HTML to display as a web page rather than showing the code as written?  It appears that somehow some sort of code generator is being invoked and causing this to happen.  I am not trying to do anything complex, just simple files like "Hello World".

    Hi ..
    Make sure you are following the instructions as noted here >  Creating a Basic Web Page
    You may need to turn off all Safari extensions.
    From your Safari menu bar click Safari > Preferences then select the Extensions tab.
    Switch to OFF.
    Then see if it reads as HTML or Hello World.

  • Basic html page will not display for my client!

    I have built a new website for a client, and I have plonked
    it in a folder on his server so that he can view it without it
    being live, but when he views it from his office, the url (which is
    correct) loads a page stating that the page could not be found. I
    have loaded a preliminary design on a different server, and he can
    see that. (Just to clarify, I have loaded it on his server because
    his server will display php, my servers are windows and don't do
    php, that's why it's a preliminary design on my server)
    Everybody I have sent this url to can see the new site design
    in the sub-folder, it even works on my iPhone, but none of his pc's
    in his office can get to the page. Any ideas as to why? As a test,
    the home page is currently very basic html, it simply says in h1
    'Can you see this?' but still no joy.
    There must be something he has on his system that stops his
    network for accessing new files on his own website, but what?
    Thanks
    Mat

    matthew stuart wrote:
    > I have built a new website for a client, and I have
    plonked it in a folder on
    > his server so that he can view it without it being live,
    but when he views it
    > from his office, the url (which is correct) loads a page
    stating that the page
    > could not be found. I have loaded a preliminary design
    on a different server,
    > and he can see that. (Just to clarify, I have loaded it
    on his server because
    > his server will display php, my servers are windows and
    don't do php, that's
    > why it's a preliminary design on my server)
    >
    > Everybody I have sent this url to can see the new site
    design in the
    > sub-folder, it even works on my iPhone, but none of his
    pc's in his office can
    > get to the page. Any ideas as to why? As a test, the
    home page is currently
    > very basic html, it simply says in h1 'Can you see
    this?' but still no joy.
    >
    > There must be something he has on his system that stops
    his network for
    > accessing new files on his own website, but what?
    Could it be a Firewall issue?
    Dooza

  • HTML files do not display IE Icon..

    Please, I recently bought a new PC... installed DW on it but
    none of my HTML files is displaying properly... they work... but
    they do not appear with the typical IE logo... what to do ?
    Thanx in advance...

    "Sw Jiten" <[email protected]> wrote in
    message
    news:el331c$ca1$[email protected]..
    > the only one:
    >
    > Open your Windows Explorer, then go to any place in your
    Hard Disk and you
    > will see file right ? well.. what do they display? they
    display their
    > name,
    > properties and aslo, they are very recognizable because
    ... of the logo
    > or
    > icon they have... for example, a PDF document has a
    white and red icon...
    > an
    > html has a "IE" blue icon... well... that is what I mean
    that does not
    > appear... please, help..
    >
    Method 1:
    Open IE, select Tools menu then Internet Options.
    Now select the Programs tab.
    At the bottom of the Programs tab you'll see a checkbox
    labelled 'IE should
    check to see whether it is the default browser'.
    Ensure that box is checked.
    You may need to then restart IE to restore it as your PC's
    default browser.
    Method 2:
    You can also go to Control Panel and open Folder Options.
    Select the 'File Types' tab.
    In the list of 'Registered file types' you should find both
    HTM and HTML
    filetypes associated with IE.
    If not (and you've already tried Method 1) then select HTML
    in the list,
    then click the Change button.
    In the next window that appears you should be able to find IE
    listed and
    select it, also check the box 'Alwyas use the selected
    program to open this
    kind of file'
    Repeat this process for HTM files too if necessary.
    Martin.

  • Iweb page modified with a simple html editor , now not display navigation menu

    Hello i've designed a site http://www.ballettgastini.ch with Iweb and was working till i've the needs to update a simple text in one page and get it via ftp from the server, modified with a simple html editor !!!!, and update via ftp on the server. now the page do not diplay the navigation menu bar !!!! the page is here  : http://www.ballettgastini.ch/stundenplan.html ... any suggesion ? i'm working now with a new imac with no possibility to modify the entire web site on the server...but the need it's really to change few text lines so i think to use a simple html editor... any ideas ? thanks luca giay turin italy

    Why not continue in the topic you started earlier?
    https://discussions.apple.com/message/21158910#21158910
    Anyway, the scripts folder with essential files is missing :
    http://www.lakesweddingmusic.com/Scripts/iWebImage.js
    + more
    And this is missing too :
    http://www.lakesweddingmusic.com/feed.xml
    No feed, no menu.
    And we keep finding more webpage. This one is made with iWeb 1
    http://www.lakesweddingmusic.com/The_Barn.html

  • Html file will not display

    Hi,
    I hope this is the right forum for my question.
    I am building a website using AS3 for my son. He lives in another city so I am sending the html files as test so he can see how things are progressing.
    We have done this in the past but for some reason he only sees a white and black screen on his end.
    The only thing that has changed is I have embedded a new font from the text fonts. Should I have clicked the option include at runtime sharing?
    Thanks

    Hi,
    Yes, the font must be included in the library and checked to export
    And in AS3 you will need to use this code when using the font:
    // Font
    var myFont:Font = new _Trebuchet();
    // Text formatting
    var theTextFormat:TextFormat = new TextFormat();
    theTextFormat.font=myFont.fontName;
    theTextFormat.size=10;
    theTextFormat.bold = true;
    // Text field
    var menuLabel:TextField = new TextField();
    menuLabel.defaultTextFormat=theTextFormat;
    menuLabel.embedFonts=true;
    menuLabel.selectable=false;
    menuLabel.textColor=0x000000;
    menuLabel.multiline=false;
    menuLabel.antiAliasType="advanced";
    menuLabel.border=false;
    menuLabel.text="my text will be here...";
    In AS2 all you needed was to assign the font usage in the text field but in AS3 that doesnt seem to work. Try this and hope it helps.

  • Menu not present and HTML snippet editor not displaying...help

    Hi All,
    I have been building a few websites with iWeb and today i opened the software to find that my menu was a blank box with a small grey dot on the left side.
    i went to adjust some HTML snippets to find that the the pop up editor wasn't appearing.
    so my question is simple. where have these gone? is there a setting to turn off these features?
    the issue is the same on all sites and any new site. when i drag new HTML snippets into a page the box appears like a text box but the editor window isn't there and i can't type in anything.
    the same applies for any widgets from the media library.
    hopefully someone can point out what i'm missing and help me get back on track.
    thanks for your time

    Try the following:
    delete the iWeb preference files, com.apple.iWeb.plist and com.apple.iWeb.plist.lockfile, that resides in your Home() /Library/Preferences folder. You may have already tried this.
    go to your Home()/Library/Caches/com.apple.iWeb folder and delete its contents.
    Click to view full size
    launch iWeb and try again.
    If that doesn't help continue with:
    move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
    launch iWeb, create a new test site, save the new domain file and close iWeb.
    go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
    move your original domain file from the Desktop to the iWeb folder.
    launch iWeb and try again.
    OT

  • Dreamweaver not displaying last 30 lines of code, GoLive does display them

    My issue here is that Dreamweaver is displaying lines 1
    through 71 of an .html document but there are 124 lines of code
    when opened in Go Live. Here are the undisplayed lines of code...
    any suggestions on how to reveal them in Dreamweaver CS3?
    <input type="hidden" name="id" value="1">
    <input type="hidden" name="amount" value="1200">
    <input type="hidden" name="amount_base" value="1200">
    <input type="hidden" name="quantity" value="1">
    <input type="hidden" name="item_number" value="3">
    <input type="hidden" name="item_name" value="Sabre 2 - 300
    Jumps">
    <input type="hidden" name="on0" value="warranty">
    <input type="hidden" name="or0" value="1">
    warranty: <select name="os0"
    onchange="UpdatePrice(this.form);">
    <option value="None">Please
    select</option><option
    value="Warranty=100">Warranty</option>
    </select>
    <br>
    <input type="image" src="images/ppcart1.gif" border="0"
    name="submit" alt="">
    </div>
    </td>
    </tr>
    <tr>
    <td colspan=2><div
    class="paypalsb"></div></td>
    </tr>
    </form>
    <script language="JavaScript">
    <!--
    UpdatePrice(document.pp1); // initialize option price
    -->
    </script>
    </table>
    </td></tr></table>
    <!-- view template customizable area end -->
    <p> </p>
    </td>
    <!-- End Content column -->
    <!-- Begin Cart column -->
    <td width="20%" valign="top" class="ntkRightColumn">
    <p><b><div class="paypalsb">Shopping
    Cart</div></b></p>
    <script language="JavaScript">
    <!--
    CartView(0);
    //-->
    </script>
    </td>
    <!-- End Cart column -->
    </tr>
    </table>
    <!-- Footor -->
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <tr class="ntkBottomRow">
    <td> <!-- Note: Only licensed users are
    allowed to remove or change the following copyright statement.
    -->
    <span class="paypalsb" style="color:
    #808080;">&copy;2005 NTK Software. All rights
    reserved.</span>
    </td>
    </tr>
    </table>
    </body>
    </html>

    And the file is corrupt turns out to not be the answer....
    Again I try a different fresh file that follows the same
    guidlines and the code is cut off at line 92, there are 133
    total.... I've provided the code below with a line to show what
    shows up and what doesn't - Any suggestions?
    <html>
    <head>
    <title>testing</title>
    <meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <meta HTTP-EQUIV="Expires" CONTENT="0">
    <script language="JavaScript" type="text/javascript">
    <!--
    NTK_RootPath = ""; // configure root path
    NTK_CartAction = 0; // load cart
    //-->
    </script>
    <script language="JavaScript"
    src="ntkcartconfig.js"></script>
    <script language="JavaScript"
    src="ntkcartpp.js"></script>
    <script language="JavaScript"
    src="ntkcart.js"></script>
    <script language="JavaScript"
    src="menu.js"></script>
    <script language="JavaScript"
    src="ntkmenuconfig.js"></script>
    <script language="JavaScript"
    src="ntkcategoryconfig.js"></script>
    <link href="project1.css" rel="stylesheet"
    type="text/css">
    <meta name="generator" content="PayPal Shop Builder
    v2.0.0.1">
    </head>
    <body>
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <!-- Logo and top banner background color -->
    <tr class="ntkTopRow">
    <td><img src="images/paypalsb_logo.png"
    border="0"></td>
    </tr>
    </table>
    <table width="100%" height="100%" border="0"
    cellspacing="0" cellpadding="0" class="ntkMain">
    <tr>
    <!-- Begin Menu Column -->
    <td width="20%" height="100%" valign="top"
    class="ntkLeftColumn">
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <tr><td nowrap>
    <script type="text/javascript" language="javascript">
    if (document.getElementById) {
    oMenu_root.Render();
    } else {
    document.write(ntk_browserNotSupported);
    </script>
    </td></tr>
    </table>
    <br>
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <tr><td nowrap>
    <span
    class="paypalsb"><b>Browse</b></span>
    </td></tr>
    </table>
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <tr><td nowrap>
    <script type="text/javascript" language="javascript">
    if (document.getElementById) {
    oCat_0.SetHighlight(); //*** need to set highlight to the
    current cateogry or page
    oCat_root.Render();
    } else {
    document.write(ntk_browserNotSupported);
    </script>
    </td></tr>
    </table>
    </td>
    <!-- End Menu Column -->
    <!-- Begin Content column -->
    <td valign="top" class="ntkMidColumn">
    <!-- <div class="paypalsb">testing</div>
    -->
    <p><b><div
    class="paypalsb">Categories &gt; Rigs</div></b></p>
    <!-- list template customizable area start -->
    <table class="ntkTable">
    <tr class="ntkTableAltRow">
    <form name="pp1" onSubmit="return
    SubmitItemToCart(this);">
    <td width="200" valign="top"><a
    href="Product_view_Rigs_1.html"></a></td>
    <td width="99%" valign="top">
    <a href="Product_view_Rigs_1.html">2</a>
    <br>
    <a href="Product_view_Rigs_1.html">Mirage G4</a>
    <br>
    <input type="hidden" name="id" value="1">
    <input type="hidden" name="amount" value="1200">
    <input type="hidden" name="amount_base" value="1200">
    <!-- *** Discount type -->
    <input type="hidden" name="discounttype" value="0">
    <!-- *** Ship type -->
    <input type="hidden" name="shiptype" value="0">
    <input type="hidden" name="quantity" value="1">
    <input type="hidden" name="item_number" value="2">
    <input type="hidden" name="item_name" value="Mirage
    G4">
    <input type="hidden" name="on0" value="Color">
    <input type="hidden" name="or0" value="0">
    <input type="hidden" name="shipping" value="1">
    <div id="div_amount_1" name="div_amount_1">Price:
    $1,200.00
    <!----Above Line shows up in Dreamweaver CS3-->
    <!----Below Line shows up only in other code editors-->
    Color: <select name="os0"
    onchange="UpdatePrice(this.form);">
    <option value="None">Please select</option>
    <option value="Green=0">Green</option>
    <option value="red=0">red</option>
    </select>
    <br>
    <input type="image" src="images/ppcart1.gif" border="0"
    name="submit" alt="">
    </td>
    </form>
    <script language="JavaScript">
    <!--
    UpdatePrice(document.pp1); // initialize option price
    //-->
    </script>
    </tr>
    </table>
    <!-- list template customizable area end -->
    <br>
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0"><tr>
    <td align="right"><div
    class="paypalsb">Items 1 to 1 of 1</div></td>
    </tr></table>
    <br>
    <p> </p>
    </td>
    <!-- End Content column -->
    <!-- Begin Cart column -->
    <td width="20%" valign="top" class="ntkRightColumn">
    <p><b><div class="paypalsb">Shopping
    Cart</div></b></p>
    <script language="JavaScript">
    <!--
    CartView(0);
    CartButton(0);
    //-->
    </script>
    </td>
    <!-- End Cart column -->
    </tr>
    </table>
    </body>
    </html>

Maybe you are looking for