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. darkom

    Problem with stylesheet in Netscape

    It is on my server and I have tried with a full and a relative path. It still doesn't work.
  2. darkom

    Problem with stylesheet in Netscape

    That is exactly what I am doing, calling an external .css file as so : <LINK rel='stylesheet' type='text/css' href='style.css'> And the result is what I have stated previously. here is my code : <HTML> <HEAD> <META http-equiv=&quot;Content-Type&quot; content=&quot;text/html...
  3. darkom

    Problem with stylesheet in Netscape

    Hi, I have a problem with my stylesheet in Netscape(I'm using 4.7) here it is : When you type the URL of my web site, the stylesheet code apears (in the browser) instead of the page itself. If you hit the BACK button, then you see the intended page. after that if you navigate inside the site...
  4. darkom

    Transparency with what file format ??????

    Thanks angelag but I found a link to answer the question for PSP 6 > and here it is : http://members.aol.com/psptopten/1.html
  5. darkom

    Transparency with what file format ??????

    I am using Paint Shop Pro 7 eval. I tried to make the background of my image transparent with the magic wand and it seemed to work. So I saved it in the GIF format. But when I display it on a web page the background still shows up as white. WHY ???
  6. darkom

    perl cgi

    In that case try using a standard perl script. (.pl) instead of a cgi. Then you won't have a windows open. Here is an exemple : #!/usr/lpp/ssp/perl5/bin/perl $command_text = &quot;ip_general&quot;; $command_text = uc($command_text); print '$command_text\n'; exit; If you use the line : use...
  7. darkom

    SELECT tag in Netscape

    If it helps here is the output of the view source from the browser <!DOCTYPE HTML PUBLIC &quot;-//IETF//DTD HTML//EN&quot;> <HTML><HEAD><TITLE>Router View</TITLE> <link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/_themes/personnel/pers1100.css&quot;> <link...
  8. darkom

    SELECT tag in Netscape

    As I said earlier it lists the possible choices instead of puting them in a menu. I use Netscape Communicator 4.7 I don't know how else to explain it and I can't paste an image onto my reply. if you want to see an aproximation of the output look further up to my reply of nov 14.
  9. darkom

    perl cgi

    if your goal is to keep the form page in the browser when the file size has not changed, then may I suggest doing this : if($sz > 0) { open (FILE, &quot;$filename&quot;); $nuData=<FILE>; close (FILE); open (FILE, &quot;>$filename&quot;); # clear file close (FILE)...
  10. darkom

    perl cgi

    Can you put the code in your reply so we can see how it is structured !
  11. darkom

    SELECT tag in Netscape

    Sorry Doc but it still doesn't work, I've already tried that but thanks anyway.
  12. darkom

    perl cgi

    It's hard to tell without seeing the actual code but you might want to try to put an EXIT command. if(size == changed) { print &quot;Hello !&quot;; } else { exit; }
  13. darkom

    Pull down menu in Netscape

    Would someone tell me what i am doing wrong here. the pull down menu works great in IE but doesn't in Netscape. It lists the choices as text like so: Chose configuration : MIG-ETHERNETMIG-TOKEN-RINGMIC-HPRIPMIG-HPRIP instead of putting them in a pull down menu like so : Chose configuration ...
  14. darkom

    SELECT tag in Netscape

    Maybe I should have told you guys this earlier but my html code is in a CGI (Perl). I tried the html code only and your right it works. but from my CGI it doesn't. Here is the perl code : ############################################################################ # # Fonction...
  15. darkom

    Graphic file format converters

    Here is the easiest to use image converter on the market From home plan software http://www.homeplansoftware.com Converts from and to BMP, GIF and JPG (or JPEG)
  16. darkom

    SELECT tag in Netscape

    As you can see it lists the choices as text like so: Chose configuration : MIG-ETHERNETMIG-TOKEN-RINGMIC-HPRIPMIG-HPRIP instead of putting them in a pull down menu like so : Chose configuration : MIG-ETHERNET MIG-TOKEN-RING MIC-HPRIP...
  17. darkom

    SELECT tag in Netscape

    Don't worry Jaredn they are, along with the rest of the form fields.
  18. darkom

    SELECT tag in Netscape

    Would someone tell me what i am doing wrong here. the pull down menu works great in IE but doesn't in Netscape. My code : <SELECT NAME='action'> <OPTION VALUE='add' SELECTED>Add <OPTION VALUE='delete'>Delete <OPTION VALUE='update'>Modify </SELECT>
  19. darkom

    Poping UP two diffrent windows from the same page

    Sorry jared but the web site is on an intranet and cannot be accesed from the outside but thanks for the parameters string.
  20. darkom

    Poping UP two diffrent windows from the same page

    B.T.W. I was wondering how to pass parameters to the CGI script in the new window

Part and Inventory Search

Back
Top