I have a web site with some ASPs. The ASPs that contain the line
'Server.createobject(Server.Dictionary) are not running. When executed,
we receive the error given below.

Server object error 'ASP 0178 : 80070005'

Server.CreateObject Access Error

/olt/teststart.asp, line 29

The call to Server.CreateObject failed while checking permissions.
Access is denied to this object


Somebody help,

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Re: Scripting.dictionary by McKirahan

McKirahan
Sat Feb 19 05:07:29 CST 2005

"Amrendra Pandey" <amrendra_pandey@hotmail.com> wrote in message
news:edteqrkFFHA.1932@TK2MSFTNGP14.phx.gbl...
>
> I have a web site with some ASPs. The ASPs that contain the line
> 'Server.createobject(Server.Dictionary) are not running. When executed,
> we receive the error given below.
>
> Server object error 'ASP 0178 : 80070005'
>
> Server.CreateObject Access Error
>
> /olt/teststart.asp, line 29
>
> The call to Server.CreateObject failed while checking permissions.
> Access is denied to this object
>
>
> Somebody help,

Try it with quotes:

Server.CreateObject("Server.Dictionary")



Re: Scripting.dictionary by McKirahan

McKirahan
Sat Feb 19 06:11:50 CST 2005

"McKirahan" <News@McKirahan.com> wrote in message
news:6KqdnWmpn-BsgIrfRVn-hw@comcast.com...
> "Amrendra Pandey" <amrendra_pandey@hotmail.com> wrote in message
> news:edteqrkFFHA.1932@TK2MSFTNGP14.phx.gbl...
> >
> > I have a web site with some ASPs. The ASPs that contain the line
> > 'Server.createobject(Server.Dictionary) are not running. When executed,
> > we receive the error given below.
> >
> > Server object error 'ASP 0178 : 80070005'
> >
> > Server.CreateObject Access Error
> >
> > /olt/teststart.asp, line 29
> >
> > The call to Server.CreateObject failed while checking permissions.
> > Access is denied to this object
> >
> >
> > Somebody help,
>
> Try it with quotes:
>
> Server.CreateObject("Server.Dictionary")

Sorry, I meant:

Server.CreateObject("Scripting.Dictionary")