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

    IE not posting data on first 2 attempts

    I have solved the issue. The default web server settings was using windows authentication where as the individual site was set to anonymous authentication. Apparently IE gets upset if there is different authentication settings.
  2. ianjenn

    IE not posting data on first 2 attempts

    Hi all After days of searching I can't find a solution to my problem, I have a web application on our work intranet that when you first log on to the network and load IE, the post data from my web page does not submit. I have made the simplest of forms with one input box posting to the same page...
  3. ianjenn

    DSN to DSNless leads to error

    ooops the error is rather unhelpful and is simply error '80004005' /hidden23.asp, line 15 with no other information
  4. ianjenn

    DSN to DSNless leads to error

    Hi I am trying to move from a DSN connection string to a DSNless connection and for some reason I get an error when I try to do it. My DSN connection was this Dim objpharws50 Set objpharws50 = Server.CreateObject("ADODB.Connection") objpharws50.Open "DSN=prescript" and I have changed to...
  5. ianjenn

    form validation

    thanks tsuji, it was the onclick that was calling the problem.
  6. ianjenn

    form validation

    I don't know if anyone could have a quick look at the validation below as I have spent hours trying to get it to work without success. The general gist is that there is 5 text boxes that have various checks before submitting. The field ward checks the entry against and array. There is two submit...
  7. ianjenn

    date comparison I am really stuck with

    it just doesn't work, no matter what date I enter. the error appears to be with if (theform.datefrom.getTime() > start_date.getTime()) but I can't see anything wrong with it. so maybe something else
  8. ianjenn

    date comparison I am really stuck with

    Can anyone give me a clue as to why this isn't working, I want to compare the date entered in my form to 1/4/06 I am using onsubmit="return minus_Validator(this)" to call up the check <SCRIPT LANGUAGE=JavaScript> function minus_validator(theform) { var start_date =new Date("1/4/2006"); if...
  9. ianjenn

    remove leading Zero's

    Thanks Tarwen, First idea is a winner
  10. ianjenn

    remove leading Zero's

    The function to remove zero's above works great but it takes out all of the zero's not just the leading ones. For instance 0045067n becomes 4567n. Is there anyway to just get rid of the leading zeros but leave any zero occuring later on in the string intact. This really has me stumped, can...
  11. ianjenn

    datediff and SQL error

    No I tried that, it doesn't work. The single quote does however work e.g. DateDiff('d'.... thanks though
  12. ianjenn

    datediff and SQL error

    okay problem is with dateDiff(&quot;d&quot;... should be Datediff('d'...
  13. ianjenn

    datediff and SQL error

    Can anyone see the error in the following SQL statement - &quot;WHERE times.timein Between #&quot; & FormatDateTime(datdays,1) & &quot;# AND #&quot; & FormatDateTime(datend,1) & &quot;# AND times.tech Is Not Null AND times.pharm Is Not Null AND...
  14. ianjenn

    adOpenReadOnly or adOpenKeyset??

    I have been able to update my access database for 2 weeks using adopenreadonly. But yesterday I received an error message unable to update query. So I changed to adopenkeyset and it works fine again. I have not made any changes to the web pages although I have incorporated new pages into the...

Part and Inventory Search

Back
Top