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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by engcomp

  1. engcomp

    replacing text in .html page

    A BIG thanks to everyone. I have changed all Javascript to SSI It was really quite simple with search and replace to strip all Javascript and get back to raw html, which I then saved in a text file for SSI. Thanks again http://www.engs-comp.com/
  2. engcomp

    replacing text in .html page

    The quoted comment came from... http://httpd.apache.org/docs/1.3/howto/ssi.html But I am concerned about "If your navigation is hidden in JS, Google won't be able to spider your site." My navigation comprises a list of variables, like... <script type="text/javascript" language="JavaScript">...
  3. engcomp

    replacing text in .html page

    I mean 'border = "0"' http://www.engs-comp.com/
  4. engcomp

    replacing text in .html page

    It is so frustrating when you know exactly what you want to achieve, but you don't know the best way to do it, like 'how to eliminate the border around "iframes"'? "border = 0" doesn't work! http://www.engs-comp.com/
  5. engcomp

    replacing text in .html page

    I tried eliminating "height" - no good, a default is inserted. http://www.engs-comp.com/
  6. engcomp

    replacing text in .html page

    vacunita, thank you I have no problem with "width" - it is the width of my centre column. I have a problem with "height" and "scrolling" - is it possible to adjust the height to suit the size of the article so that "scrolling" is not necessary? Finally, instead of "noarticlepage.html", how...
  7. engcomp

    replacing text in .html page

    But I like the idea of vacunita's iframe suggestion. This seems to come closest to my original question. Never used the command before, so I have to read up on it. Thank you all, for your great comments! http://www.engs-comp.com/
  8. engcomp

    replacing text in .html page

    The reason I prefer Javascript is that I know nothing about SSI. However, reading up on it, I see this comment: "SSI is a great way to add small pieces of information, such as the current time. But if a majority of your page is being generated at the time that it is served, you need to look for...
  9. engcomp

    replacing text in .html page

    Thank you all for your contribution. Seems like "separate pages" is the way to go, because some are likely to be bookmarked. To make it easy to upgrade, I'd use a Javascript variable for the article list. Anybody know what percent of users have Javascript turned off? Thanks again...
  10. engcomp

    replacing text in .html page

    Here is another reason for just replacing part of the html code of a page - if the main menu or article pointer menu or fixed text blocks are changed, every article page has to be updated. However, there may be a way of loading the "stationary" elements as Javascript variables? Say you have a...
  11. engcomp

    replacing text in .html page

    Thank you such a prompt response. Yes, the straight forward solution is to have a separate page for each article, each of which would recreate all of the menus and pointers and non-changing text blocks. This seems wasteful if it is possible to just replace the html code of one central text...
  12. engcomp

    replacing text in .html page

    I have a page with a table (three columns). The left column holds the site's main menu. The right column holds pointers to articles. The centre column holds several text blocks. I want to replace one of those text blocks with another according to which pointer the user clicked in the right...
  13. engcomp

    if ((y==&quot;&quot;) &amp;&amp; (isNaN(parseInt(y))))

    Maybe everybody knows this, but I learned it the hard way: Javascript treats y==&quot;&quot; and y==0 as being the same. I have a little program that solves nonlinear equations online, see: http://www.engs-comp.com/solvnonlinearequ/index.html The evaluation function returns &quot;&quot; if an...
  14. engcomp

    How do I put a value in a querie string?

    Dear Rieekan WOW - I only posted the question a few minutes ago. 1. Yes, Javascript is my preferred language. 2. No - no further explanation is necessary because you set out every required factor so well even I can understand it (except document.findus - what's that?). 3. The HTML <form>...
  15. engcomp

    How do I put a value in a querie string?

    I want to pass the value of two variables to a cgi task thus: /domain/cgi-bin/task.cgi?name=realname&address=realaddress var realname=GetCookie(name); var realaddress=GetCookie(address); How do I put the values of those vars into the querie string? As written, the task gets...

Part and Inventory Search

Back
Top