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 strongm 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 Fendal

  1. Fendal

    File Upload

    I used something very similar too this asp, http://cwashington.netreach.net/depo/view.asp?Index=463 code with IIS 6.0 and it worked quite well, the download zip is at, http://cwashington.netreach.net/downloads/scripts/component/upload_files_to_iis_web_server_via_browser.zip It's worth a try.
  2. Fendal

    Optimize loading

    If you're going to keep the images you should consider updating to JPEG2000, although it's not yet widely supported by web browsers :-( , still something to think about. http://www.jpeg2000info.com http://en.wikipedia.org/wiki/JPEG_2000
  3. Fendal

    img loop

    Why would it ? it will replace the amount of "*n*"'s each time, if you enter "http://www.eastman.ucl.ac.uk/guide/*n**n**n**n*.gif" in the text input you'll see.
  4. Fendal

    how to change width of <td> from javascript?

    <table width="100%" bgcolor="green"> <tr> <td id="wtd" width="50%" style="border:red 5px groove" onclick="wchg();"> test </td> <td width="50%" style="border:yellow 5px groove"> test2 </td> </tr> </table> <script> function wchg(){ document.getElementById('wtd').style.width = '10%'; } </script>
  5. Fendal

    Run Multiple Sites on Your IIS Server

    I did a search and found http://www.tek-tips.com/viewthread.cfm?qid=787633 I think I understand it now, thanks.
  6. Fendal

    Run Multiple Sites on Your IIS Server

    Hi All, I'm trying to find out how I need to set up my IIS(6.0) to run two domains (different site contents on each) from one server (win 2003), I thought I was about to get the answer here, http://www.windowsitpro.com/Articles/Index.cfm?ArticleID=21871 but then I was faced with "Subscribe...
  7. Fendal

    Congratulations StrongM

    hhmmm, there's a lot of love in this thread, but, 1000 stars is impressive, well done :-) .
  8. Fendal

    Updating to 100% valid HTML

    Great, Thanks Feherke.
  9. Fendal

    Updating to 100% valid HTML

    Thanks, Feherke you were right about the onload I should have tested it properly really, the problem was in the function its self. I took the function out of the external js to make it easier to test as I don't yet have a link. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
  10. Fendal

    Updating to 100% valid HTML

    hmm, I thought this was "HTML, XHTML & CSS" forum, oh well, same ball park.
  11. Fendal

    Updating to 100% valid HTML

    Hi, All I'm going through the painstaking process of validating my pages, all was going (surprisingly) well untill I came to adding, <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> (working backwards with FF 1.5.0.2 extension "Html...
  12. Fendal

    How to close a Web Browser Window

    needs to be asked in the javascript forum but, <a href="javascript:window.close()">Close</a> if by "the on call schedule" you mean onclick event then, <a href="#" onclick="window.close()">Close</a> or, if that gives you a confirm message use, <a href="#"...
  13. Fendal

    setting variables and calling the script

    if you're not using the full url remove the plus sign, function ask(person){ window.open(+person, "askwin","scrollbars=no, height=250, width=250"); } so it's function ask(person){ window.open(person, "askwin","scrollbars=no, height=250, width=250"); } failing that check all the...
  14. Fendal

    setting variables and calling the script

    No, it "should" work with either the apostrophe or double quotes. Do you have a pop-up blocker ?, are you running XP service pack 2 ?, if you copy and paste then save and test the following code do you get the alert message ?, <script type="text/javascript"> function ask(person){...
  15. Fendal

    setting variables and calling the script

    Did you try putting the full url for your popup ? <script type="text/javascript"> function ask(person){ var win=window.open("http://www.google.com/txt-"+person+".html", "askwin","scrollbars=no, height=250, width=250"); } </script> <a href="javascript:ask('john')">John</a><br /> <a...

Part and Inventory Search

Back
Top