Microsoft VBScript runtime error

S

Steve

Hi, I have a Microsoft VBScript runtime error '800a000d'

Type mismatch: '[string: ""]'

/petv2_1/new_question/update.asp, line 78

I was taking an A+ test over the internet and when I got
to quetion 20 or 21. it gave me that error.I change their
html code with.... <%@ LANGUAGE="VBScript"%>
<%
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "MyDSN", "MyUserID", "MyPassWord"
set oRS = oConn.Execute("Select list_price FROM
DEMO.PRICE")
Response.Write("List Price * 100 = " & CDbl(oRS
("list_price")) * 100)
%> it work once... maybe I got
lucky.... than I got the same error.

please help and thanks. (e-mail address removed)
 
M

Michael Burk [MSFT]

You will also want to send this information to the webmaster for the site
you were visiting. This is not a problem with VBScripting on your client
end, but rather a mistake in the actual script on the server.

--
Michael Burk
Longhorn Shell
http://msdn.microsoft.com/longhorn
----===========================----
This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top