runtime error (0x800A000D)

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default runtime error (0x800A000D)

    I'm experiencing the following error message:

    Error Type:
    Microsoft VBScript runtime (0x800A000D)
    Type mismatch: 'cDbl'
    /auction/auction_biditem.asp, line 19

    my code:
    <%
    else 'Login Check
    p_auction_id = request.form("p_auction_id")
    p_bid = cDbl(Request.form("p_bid"))

    set outpostDB = Server.CreateObject("ADODB.Connection")
    outpostDB.Open "outpost"
    ---
    where p_bid is a money format value.

    Someone coud help me to pint where I did wrong?

    Regards,
    Charles Vaz




    Charles Vaz Guest

  2. Similar Questions and Discussions

    1. Error : Microsoft VBScript runtime (0x800A000D)
      Hi, I get an error Type mismatch: 'LBound' when I try to submit my form, which saves the form data to database. There is not much of a help...
    2. C++ Runtime error Win XP
      Hi all - I am administering an Intranet on my local network . The site works fine from a number of machines however, on two machines I can browse...
    3. 0x800A000D - Type Mismatch Error
      I am not sure what is goint on. Here's my code inWeekStart = "11" inWeekEnd = "14" Compyear = "2003" Dim rsSQL, strSQL, cmSQL dim...
    4. c++ runtime error
      I remember getting intermittent errors like this, with a product authored in director7 - but that had no embedded fonts. It did however use an old...
    5. C++ runtime error in PS 7
      Why is my PS 7 doing this, it seems to be happening when I am selecting fonts by typing what I want, and then changing the font in teh font window?
  3. #2

    Default Re: runtime error (0x800A000D)

    Charles Vaz wrote:
    > I'm experiencing the following error message:
    >
    > Error Type:
    > Microsoft VBScript runtime (0x800A000D)
    > Type mismatch: 'cDbl'
    > /auction/auction_biditem.asp, line 19
    >
    > my code:
    > <%
    > else 'Login Check
    > p_auction_id = request.form("p_auction_id")
    > p_bid = cDbl(Request.form("p_bid"))
    >
    > set outpostDB = Server.CreateObject("ADODB.Connection")
    > outpostDB.Open "outpost"
    > ---
    > where p_bid is a money format value.
    >
    > Someone coud help me to pint where I did wrong?
    >
    > Regards,
    > Charles Vaz
    What do you see when you do this:
    Response.Write Request.form("p_bid")

    If a non-numeric character is present, you will get a type mismatch.
    If the user entered a string in a different format than that specified in
    the server's regional settings, you will get a type mismatch. Plus, you need
    to realize that asp code runs in the context of the IUSR_machinename
    account, which may have the default (US) regional settings.

    HTH,
    Bob Barrows


    Bob Barrows Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139