Ask a Question related to ASP Database, Design and Development.
-
Charles Vaz #1
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
-
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... -
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... -
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... -
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... -
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? -
Bob Barrows #2
Re: runtime error (0x800A000D)
Charles Vaz wrote:
What do you see when you do this:> 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
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



Reply With Quote

