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 doublehelix

  1. doublehelix

    Using SSI inside a Perl Program

    No, because the perl generated page is not parsed by the server as an SSI page.
  2. doublehelix

    BIG PROBLEM - Domain access

    Wait, wait, wait, wait... Why don't you just open the ports in your firewall then?
  3. doublehelix

    Perl and Apache

    The first line of a perl script is called the shebang line. it tells the script where the perl interpreter is.
  4. doublehelix

    Replace frame src

    Have one of the other pages loaded then force a load of the content page. Probably the header page, since I imagine that only loads once whereas the nav page might change as you move around the site.
  5. doublehelix

    Where does the Mainframe fit in?

    At my workplace I suggested we deep freeze all our COBOL programmers and thaw 'em one at a time when we needed to perform maintenance on our clunky old legacy systems. And I wonder why people don't take all my recommendations seriously...
  6. doublehelix

    install modules on Win98

    Don't need to do it via the internet. I've heard of people loading the files locally and pointing ppm to them.
  7. doublehelix

    Web pages: online vs. print

    If you anticipate your pages are going to be printed - and they will be printed if there is a lot of text on them - it is absolutley imperitive that you design keeping the issue of printer width in mind. Virtually every usability study shows that surfers scan web pages and don't read them in...
  8. doublehelix

    Form to Text file without ASP

    You're out of luck unless they allow to use a full cgi-bin (many free servers limit what their cgi-bin can actually do). You need to be able to run a server-side script (perl, php, whatever...) that has permissions to write a flat file on the server. There are free hosting companies that give...
  9. doublehelix

    getting index.html from href

    Try this too... <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;> <html> <head> <title>File name Capture from a URL</title> </head> <body> <script language=&quot;JavaScript&quot;> <!-- Instantiate Regular expression Object --> var myRegExp=new RegExp(); var myRegExp =...
  10. doublehelix

    getting index.html from href

    Use a regular expression and extract everything after the last slash.
  11. doublehelix

    apache CGI - Internal Server Error

    You end the path in your script alias with a slash, but not in your directory. That could cause a problem. End 'em both with a slash.
  12. doublehelix

    Can one frame access elements in another?

    Yes, the parent document is the page that created the frameset, and both frames are chlidren of it. Assumming you named the first frame frame_1 and the seond frame_2 the pathing would look like this: parent.frame_1.document.someobject.someproperty parent.frame_2.document.someobject.someproperty...
  13. doublehelix

    My second attempt at a site Please Review

    Too wide. I had to scroll horizontally to look at it. I didn't much like the linear nature of the main navigation bar either -- from any page I would prefer to be able to jump where I want to in the side, rather than having to go back to the main page. Graphics looked nice and seemed to be...
  14. doublehelix

    running an exe from an html page

    It is not a dead end, ASP is not the only way of doing what you want to do. Your solution lies in any of the server-side scripting languages, such as ASP, php, perl, etc.
  15. doublehelix

    How long to be a professional

    Actually, as soon as you con somebody into paying you to crank out code you're a professional. ;-)

Part and Inventory Search

Back
Top