Quote:
> A single line in an .asp file consistently creates a
VBScript runtime
> error (0x800A01A8):
> <%
> Set strCand = Request.Form("fiName") & "." & Request.Form("laName")
> %>
The Set statement requires an object. 'Request.Form("fiName") & "." &
Request.Form("laName")' doesn't produce an object, it produces a string.
The "Object Required" error is simply telling you that a string is not
an object.
strCand = Request.Form("fiName") & "." & Request.Form("laName")
Set Statement
http://www.*-*-*.com/
Windows Script Documentation
http://www.*-*-*.com/
--
Steve
Bad artists copy. Great artists steal. -Picasso