Bizar variable problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris W

    #16
    Re: Bizar variable problem

    I figured it out last night. I started thinking about the templet file
    my script was reading and printing around it's dynamic output. There is
    a lot of java script in there and I was wondering if that was making it
    reload, so I commented out the parts that read in the templet with all
    the java script and low and behold problem solved :) Now all I need to
    do is figure out why the java script is making my script reload and how
    to stop it.

    Here is a link to just the templet file with out any of the dynamic data
    from the script in case anyone cares to look at java script.



    --
    Chris W

    "They that can give up essential liberty
    to obtain a little temporary safety
    deserve neither liberty nor safety."
    -- Benjamin Franklin, 1759 Historical Review of Pennsylvania

    Comment

    • Chris W

      #17
      Re: Bizar variable problem

      Chris W wrote:[color=blue]
      >
      > I figured it out last night. I started thinking about the templet file
      > my script was reading and printing around it's dynamic output. There is
      > a lot of java script in there and I was wondering if that was making it
      > reload, so I commented out the parts that read in the templet with all
      > the java script and low and behold problem solved :) Now all I need to
      > do is figure out why the java script is making my script reload and how
      > to stop it.
      >
      > Here is a link to just the templet file with out any of the dynamic data
      > from the script in case anyone cares to look at java script.
      >
      > http://cdw.homelinux.com:8086/Cart.html[/color]


      got this reply on a java script ng and it fixed the problem


      This line:
      <body BGCOLOR="#FFFFF F" TEXT="#000000" LINK="#106BA5" VLINK="#A56B10"
      ALINK="#FF00FF" BACKGROUND="?">

      Is trying to load a background image named "?".
      That's what's causing that second hit.

      Thanks for everyone's help in trouble shooting and giving me other ideas
      for improvement.


      --
      Chris W

      "They that can give up essential liberty
      to obtain a little temporary safety
      deserve neither liberty nor safety."
      -- Benjamin Franklin, 1759 Historical Review of Pennsylvania

      Comment

      • WinickWatch

        #18
        Re: Bizar variable problem

        [color=blue]
        > This line:
        > <body BGCOLOR="#FFFFF F" TEXT="#000000" LINK="#106BA5" VLINK="#A56B10"
        > ALINK="#FF00FF" BACKGROUND="?">
        >
        > Is trying to load a background image named "?".
        > That's what's causing that second hit.
        >
        > Thanks for everyone's help in trouble shooting and giving me other ideas
        > for improvement.
        >[/color]

        Wow! A "?" caused all the problems!!!! Uggh


        Comment

        Working...