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 Mike Lewis 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. 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...
  16. Fendal

    Multi Player via TCP/IP

    This http://www.tek-tips.com/viewthread.cfm?qid=898772 thread is similar to my problem and answers my question. Thanks.
  17. Fendal

    Multi Player via TCP/IP

    Hi All, is it possible to play a game over the internet through a TCP/IP connection when you're on a LAN network.? I tried connecting to their computer by entering their I.P but it didn't connect, then when I tried to host the game so that they could connect to my computer, I'd click "show...
  18. Fendal

    Easiest way to get local ip address?

    If using Windows Click Start>Run type "command" inthe dos/command window, type " ipconfig " and there it will be. IP Address........ 127.0.0.1 (or whatever it is)
  19. Fendal

    Dynamic Windows Server 2003

    Thanks, Togatown, That will work great for now, although one of the reason I wanted to bypass zoneedit altogether is that in a few months time I was considering buying 20 to 30 domains which will be linked to one site. zoneedit offers the DNS for the first three domains free an then you purchase...
  20. Fendal

    Dynamic Windows Server 2003

    Hi all, I have a site running on windows server 2003 connected to a dynamic I.P address, currently zoneedit.com are taking care of the DNS servers, but, on rare occasions when I have to restart after downloading updates and so on my I.P will change, which means I need to login to zoneedit and...

Part and Inventory Search

Back
Top