Microsoft Vbscript Runtime error '800a01a8' Object required: '[Undefined]'

Asked

Viewed 1,137 times

2

I have a routine q was working normally in IE 8, when updated to IE 11 it presents me the following message:

Microsoft Vbscript Runtime error '800a01a8'

Object required: '[Undefined]'

Microsoft Vbscript Runtime error '800a01a8'

Object required: '[Undefined]'

/quality/records.old/upl_conf.Asp, line 30

Follows script:

' Chamando Funções, que fazem o Upload funcionar
byteCount = Request.TotalBytes
RequestBin = Request.BinaryRead(byteCount)
Set UploadRequest = CreateObject("Scripting.Dictionary")
BuildUploadRequest RequestBin

' Recuperando os Dados Digitados ----------------------
num_rc = UploadRequest.Item("TXTrc").Item("Value")            <--- Linha 30

' Tipo de arquivo que esta sendo enviado
tipo_arq = UploadRequest.Item("arq").Item("ContentType")

' Caminho completo dos arquivos enviados
caminho_arq = UploadRequest.Item("arq").Item("FileName")

' Nome dos arquivos enviados
nome_arq = Right(caminho_arq,Len(caminho_arq)-InstrRev(caminho_arq,"\"))

Would you have any idea how to solve this case?

  • Without knowing the origin of TXTrc can’t answer that question.

1 answer

0

I believe the correct method is Items and not Item. I mean that .Item can’t other .Item.

So this:

' Recuperando os Dados Digitados ----------------------
num_rc = UploadRequest.Item("TXTrc").Item("Value")            <--- Linha 30

' Tipo de arquivo que esta sendo enviado
tipo_arq = UploadRequest.Item("arq").Item("ContentType")

' Caminho completo dos arquivos enviados
caminho_arq = UploadRequest.Item("arq").Item("FileName")

Do this:

' Recuperando os Dados Digitados ----------------------
num_rc = UploadRequest.Items("TXTrc").Item("Value")            <--- Linha 30

' Tipo de arquivo que esta sendo enviado
tipo_arq = UploadRequest.Items("arq").Item("ContentType")

' Caminho completo dos arquivos enviados
caminho_arq = UploadRequest.Items("arq").Item("FileName")

Examples:

  • Test performed, but error persists.

  • @Pauloalves what is the origin of TXTrc and arq?

Browser other questions tagged

You are not signed in. Login or sign up in order to post.