Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pumpkinapo

    ISAPI ITS_RAW receiving corrupt data

    Looking for a little insight into an issue I can't seem to solve. We have an in-house written ISAPI extension to handle the submission of XML into our data system. What we are seeing is that when several small consecutive posts of data are being passed into the ISAPI extension some will come...
  2. pumpkinapo

    Setting Style properties

    It looks ok... make sure you put your text you want styled between the <div> tag's. <div id="status" style="color: #FF0000; width: 704px; height: 50px">THIS PAGE will CLOSE IN 'STATUS' seconds</div> Peter Leing Web Programmer Cenlar FSB
  3. pumpkinapo

    framespacing = incompliant Please help

    Both the framespacing (IE tag) and border* (Netscape tag) are not part of the HTML 4 or XHTML specs. I have just given up trying to find a standards way of doing this and only let the frameset page fail compliance testing. * NOTE: IE 6 seems to support the "border" attribute, previous versions...
  4. pumpkinapo

    XP, IE6, SSL site issues

    Hey all, my dad is having a problem with his XP machine. Whenever he tries to access secure sites he times out. We have several other computers in the house and none of the others have problems. I'm out of idea's and was hopeing some of the bright minds on this forum would help me. Things we...
  5. pumpkinapo

    JavaScript Error on Internet Explorer 6.0

    Ok... that makes no sense to me without seeing what your doing... But one last question: Are you setting the value to a variable? var btn_value = document.form.htmlSubmit.value;
  6. pumpkinapo

    JavaScript Error on Internet Explorer 6.0

    Since it's in a function when is this function being called? OnLoad? OnClick of the apply button? OnSubmit of the form?
  7. pumpkinapo

    JavaScript Error on Internet Explorer 6.0

    4) Is this code placed before the button on the page? 5) Is this code placed inside a function? Or just between script tags?
  8. pumpkinapo

    JavaScript Error on Internet Explorer 6.0

    3) Are you getting the message when the page loads or when you click the button?
  9. pumpkinapo

    JavaScript Error on Internet Explorer 6.0

    Hmm... ok a challange... time for some Q&A.. 1) Make sure there is a form element named htmlSubmit. 2) What is htmlSubmit? A button? An input field? Any possibilty of posting line 68?
  10. pumpkinapo

    JavaScript Error on Internet Explorer 6.0

    Sounds like your trying to get the value for an form object that doesn't exist. Do you have the source code available for us to look at?
  11. pumpkinapo

    Javascript And The DOM

    Thanks theboyhope. Copied Nodes do not copy EventListerners. I was able to get it to work using help from: thread216-660619
  12. pumpkinapo

    Javascript And The DOM

    Here's my problem... I'm using cloneNode() to copy 4 rows of a table. This works fine, however there's a js that when cloned is not working. Only when the js is cloned does the script not execute. In the linked example, clicking on &quot;Notes&quot; will work for the first entry. It will...
  13. pumpkinapo

    viewing document after modifying using DOM

    When you do view source or even save the web page, I belive it will only show the data passed to the client, not any changes to the page done at the client end. I have the same problem with appending cloned nodes to a table.
  14. pumpkinapo

    style.display crashing IE 5.5

    Solution found: http://support.microsoft.com/default.aspx?scid=kb;en-us;294984
  15. pumpkinapo

    style.display crashing IE 5.5

    Thanks AtomicChip. But, is there a way I can work around it, if it is a bug?
  16. pumpkinapo

    style.display crashing IE 5.5

    I seem to be having a problem with setting style.display = &quot;block&quot; though javascript. On IE 5.5 SP2 it will crash the browser, on IE 6.0 it works fine. Here is a sample of the sections of code: tb.appendChild(myClone); //alert('' + tb.lastChild.style.display)...

Part and Inventory Search

Back
Top