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: *

  • Users: RnK
  • Order by date
  1. RnK

    Javascript code is displayed on the screen

    How many images are you loading? How large are the images? I seem to remember a problem we had a lot like this one and it was caused by trying to load too many large images. Try reducing the number of images and or thier file size and see if that works. RnK
  2. RnK

    Confirmation and redirecting based on answer...

    Change your button to type submit and in your form tag add the call to the confirmation function. Add 'this' to the function call to give you easy reference to the form and set the action in your if statement. This should work but I didn't test it. <SCRIPT LANGUAGE=&quot;JavaScript&quot;>...
  3. RnK

    Form email or link?

    I think as a general rule you should have both. On sites I've developed we generally provide the phone numbers and common email addresses on the top of the page and a form to allow them to submit information at the bottom. Also many times people will send comments that they do not want a...
  4. RnK

    Disappearing '\'.....

    The \ character is an modify/escape character in the javascript language. It's a little sporatic in the way that it works though. To fix your problem change your script to read javascript:OpenDDpage('test.cfm?file=\\\\v01\\v01D\\!TestDir\\Dir\\filename.wav') and it should work correctly. You...
  5. RnK

    Variable scope

    I'm not sure if this fully explains it to you but by removing the 'document' from the equation you'll get 'yes' for your answer. I don't believe global variables are stored as part of the document object, however if you destroy the document you destroy the variables so something in the document...
  6. RnK

    domain and web hosting service

    Sorry I forgot to give an answer for the first one. I've also have begun looking for a new host. Here are some of the links I've been using to research them. http://www.tophosts.com/ http://www.hostindex.com/ http://www.cnet.com/internet/0-3761.html http://www.comparewebhosts.com/...
  7. RnK

    domain and web hosting service

    Nate, make sure you check with your ISP before you set your computer as a server on the internet. I had to fight to get a hefty fine removed off my bill because I was using mine as a server. Some ISP's charge extra, some won't allow it and some don't bother checking. RnK
  8. RnK

    For RnK dependent droplists

    unreal1969, Did kevinclark and GIGN answer your question? Or are you looking to populate your dropdown list based on selection in a previous dropdown? RnK
  9. RnK

    Dynamic Select Populate

    Here is a striped down version of one I use <head> <script language=&quot;javascript&quot; type=&quot;text/javascript&quot;> <!-- var NY = new Array(); NY[0] = &quot;Albany&quot;; NY[1] = &quot;Buffalo&quot;; NY[2] = &quot;Rochester&quot;; NY[3] = &quot;Queens&quot;; var OH = new Array()...
  10. RnK

    Script not working

    Do you have a URL or some code for use to look at? RnK
  11. RnK

    usual server behaviour

    This may or may not help you. We had a simular problem on our Win2000 server where the CF programs would time out after 20 min (server settings coused the timeout). After checking the system monitor we found that the CFServer was running at 99% cpu and the problem would stop for a while after...
  12. RnK

    Error submiting Checkbox

    I have a page with several form fields including 6 checkboxes with different names. If I submit the page with none of the checkboxes selected it works fine. If I select one or more of the checkboxes I recieve an error on the next field before any proccessing. Below is a copy of the error...

Part and Inventory Search

Back
Top