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: 920506
  • Order by date
  1. 920506

    empty data fields

    Hi onpnt, I mean client side javascript,server side is VBscript. The error message is: CInt(afieldnum)-->type mismatch, because the afieldnum is empty. I used javascript to collect data for this field. When code try to display the field: Response.Write CInt(afieldnum) The program crashed. Betty
  2. 920506

    empty data fields

    Hi everyone, Recently, I am investigating a bug of javascript problem in our asp page. Somehow it always crashed in the same places in one of our asp pages for 10 times. The data fields are empty, with those fields, I collected data using JavaScript(not backed up by asp program) But I cannot...
  3. 920506

    Javascript and Operating System

    Hi trollacious, Can you test this link: http://www.travelinsuranceservices.com/select2006/selectQuote2_step1_test.asp on your Mac system. Thank you. Betty
  4. 920506

    Javascript and Operating System

    Hi everyone, Recently, I am investigating a bug of javascript problem in our asp page. Somehow it always crashed in the same places in one of our asp pages for 10 times. The data fields are empty, with those fields, I collected data using JavaScript(not backed up by asp program) But I cannot...
  5. 920506

    isObject function

    My bad. Thank you, DNG. Betty
  6. 920506

    isObject function

    Hi everyone, I tried to check before set an object is nothing so I did the following: If Not isNULL(Executor) then Executor.Close 'error here set Executor=nothing End If or If Not isObject(Executor) then Executor.Close 'error here set Executor=nothing End If But it always give me the...
  7. 920506

    Does this line code will be executed?

    Hi everyone, if I have code like this in page1.asp: If a=b then 'do something Else response.redirect("page2.asp")\ End if set cmdTemp=Nothing conn.close set conn=nothing Does that mean if the line response.redirect statement get executed, the last three lines of code in page1.asp will...
  8. 920506

    If statement problem

    Thank you, Sheco, for your clarification. I thought VB could stop evaluation when it sees countRS.EOF true. Sincerely Betty
  9. 920506

    If statement problem

    Hi DNG, Thanks for the reply. What I am trying to do is 1----if countRS.EOF then 2---- do something 3----else 4----- If CInt(CountRS.fields("submitCount"))<4 then 5----- do same thing as line 2 6----- End if 7----- End if That's why I am trying to merge the code into one...
  10. 920506

    If statement problem

    Hi everyone, can I do the following: If countRS.EOF or ( (Not CountRS.EOF) and ( CInt(CountRS.fields("submitCount"))<4 ) ) then do something here End if What I am trying to do is merge the following code: if countRS.EOF then do something End If ( (Not CountRS.EOF) and (...
  11. 920506

    not duplicable errors

    Hi everyone, Our asp pages depend on a lot on javascript in order to display the error message to customer from client side, not server side. But I feel some problems on our site come from javascript. Recently I always find that some non duplicable error on our eCommerce site. Most of these are...
  12. 920506

    error message: TCP/IP Sockets]ConnectionWrite (send())

    I am not sure if this is relevant to any update or patch with ODBC driver. Betty
  13. 920506

    error message: TCP/IP Sockets]ConnectionWrite (send())

    Hi, I checked application log, there is not any error log about network, not any other at that time. Thank you. Betty
  14. 920506

    error message: TCP/IP Sockets]ConnectionWrite (send())

    Hi everyone, I set up a customer error messge and auto email which record form data and error details on our web site in order to proactively to monitor what's going on for eCommerce site. Today, I got one message like this: * Line, Column:447, -1 * Description: [Microsoft][ODBC SQL Server...
  15. 920506

    CInt function

    Thanks all of you for your response. I am still bewildered by the puzzle. When I programmed, I already tested many, many times(more than one hundred), only one time, I got this error and I just cannot figure out the problem. Now the code is in production, I got this error again from my error...
  16. 920506

    CInt function

    Hi DNG, Thaks for your pointing that out. Is there any typical reason, for request("variablename") not getting any value, if in my program, I already make sure the variable will have a value to be passed. Betty
  17. 920506

    CInt function

    Hi all, I want to make sure numberofQuoted is integer before processing. So I use the following function to make sure that the white spaces will be trimmed before it passes to CInt. It likes this CInt(Trim(Request("numberofQuoted"))). But very intertesting thing is: one out of one hundred there...
  18. 920506

    what web browser our customers are using?

    Hi all, In my error log: I have record: UserAgent Mozilla/4.0 (compatible; MSIE 5.5; AOL 9.0; Windows 98; Win 9x 4.90) What browser they are using, AOL? if it is like this: UserAgent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322) then they using IE? I am just...
  19. 920506

    HTTP_REFERER doesn't have any value

    Hi all, Thanks for all your guys input. I gave up using HTTP_REFERER. I just added a coulpe fields with values to indicate where does the page come from. It worked out. I believe Sheco's comment is right. I should not depend on this variable in my program. Betty
  20. 920506

    HTTP_REFERER doesn't have any value

    Yes, it does show many server variables, but not http_referer. Thanks Betty

Part and Inventory Search

Back
Top