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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

runtime error '800a000d' Type mismatch: 'Requests'

Status
Not open for further replies.

mandie

IS-IT--Management
Apr 27, 2003
13
US
Hi All,
thank you for all your help last week!!!

I have another one.
I'm working in Dreamweaver and when I go to my new account page I get this at the bottom;

Microsoft VBScript runtime error '800a000d'

Type mismatch: 'Requests'

I've liikes at the line it is sending me to;

<%IF Requests("Exists)="True" Then%>

bue I didn't change it prior to it not working.
Can anyone help?
Thanks, Mandie
 
I belive that should be
<%IF Request("Exists)="True" Then%>
But you you should really request on the form passing methods

as
Request.Form (for POST) <-- via HTTP auth.
or
Request.QueryString (for GET) <-- via URL

___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page
 
Thanks for the reply.

After posting I got it to work this way.

<%IF Request("Exists")="True" Then%>

I just added a missing " .
I have other hiddens to pass info.

Thanks again.
Mandie
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top