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!

Search results for query: *

  1. cat5ives

    how to add link to input field

    xwb, this will do. Thank you so much for your help.
  2. cat5ives

    how to add link to input field

    xwb, can you please provide sample code for a box with a border?
  3. cat5ives

    how to add link to input field

    Thanks xwb but this won't work. it has to show in input box.
  4. cat5ives

    how to add link to input field

    Hi, I have an asp page that display clientname in input box (read only). I want to be able to click on client anme and it take me to another page, custdetail.asp. How can I do that? <td width="130" > <input class="ver10pxblk" type="text" readonly size="22" value="<%= clientname %>"> </td>...
  5. cat5ives

    Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) file exist doesn't work

    Thanks for replying, ChrisHirst. Found problem, need to give permission to Everyone on folder 'temp'.
  6. cat5ives

    Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) file exist doesn't work

    Hi, I have classic asp code using Server.CreateObject("Scripting.FileSystemObject") to check if file exist. The code is working fine but when we try to move to new server which has iis7 (the current one using iis5.1) then the method checking for fileExist always return false. if...
  7. cat5ives

    Hi, Can someone please explain t

    Hi, Can someone please explain to me what the statement in red does? Why the object ReadXML has the same name as funciton name? Thanks in advance. function ReadXML (url) dim xmldoc Set xmldoc = Server.CreateObject("MSXML2.DOMDocument") xmldoc.async = False...
  8. cat5ives

    reload document

    How does the reload work? I thought when it reload, I will see everything as the first time it load. But when I click button in the sample below to reload the page, I don't see button any more. Thank in advance. <html> <head> <script> function reloadPage()   {   location.reload()   }...
  9. cat5ives

    what is this code mean?

    I'm trying to learn javascript from w3schools's website. I don't understand the code in red below. Is the code correct (are those 2 lines suppose to be 1 statement, the 1st semi colon should not be there)? Thanks in advance. function setCookie(c_name,value,exdays) { var exdate=new Date()...
  10. cat5ives

    setTimeout()

    Thank you guys.
  11. cat5ives

    setTimeout()

    Hi, I have a beginner question here. I read the tutorial and from what I understand the setTimeout is only execute once after specified number of miliseconds. If that so, how can the below code keep executing (when I click the button, the timer keep counting). Thanks in advance <!DOCTYPE...

Part and Inventory Search

Back
Top