|
From: shyPotter on 11 Apr 2008 08:55 Hi all, I am having error on my XP machine while on 2003 it works Error Type: Server object, ASP 0177 (0x800401F3) Invalid class string /index.asp, line 19 @ Line 19 set Session("items") = server.CreateObject("scripting.dictionary") Can any one help please. Which dll to register. Regards,
From: Anthony Jones on 11 Apr 2008 10:47 "shyPotter" <someone(a)noone.com> wrote in message news:%23wQtwN9mIHA.4292(a)TK2MSFTNGP04.phx.gbl... > Hi all, > > I am having error on my XP machine while on 2003 it works > > > Error Type: > Server object, ASP 0177 (0x800401F3) > Invalid class string > /index.asp, line 19 > > @ Line 19 > > set Session("items") = server.CreateObject("scripting.dictionary") > > > Can any one help please. Which dll to register. > First open notepad and paste this into it:- Set o = CreateObject("Scripting.Dictionary") MsgBox "Seems to work here" Save to desktop as Test.vbs. Double click the Test.vbs file. If you get the same error search your windows/system32 folder for scrrun.dll and register it. Try again. If that fails then its possible that an over protective Anti-virus app is blocking it. If it all works fine from the VBS but you ASP page still fails then in IIS manager find your page and open its properties. On the file security tab turn of anonymous access and turn on Windows integrated. In IE make sure IE recognises your site as being in the intranet zone (this would normally be true if you using your machine name or "localhost" as the server name in the url). Does it work now? -- Anthony Jones - MVP ASP/ASP.NET
From: shyPotter on 11 Apr 2008 13:29 Thanks Anthony , I tried all these .VBS works but no solution, I tried what you said in this. I searched on net as well found few soloution but non still helpfull. dll is registred I changed registry values from Aprtment to Both and Both to Aprtment and each time I restarted the machine. I am running Windows Live OneCare I have stopped that as well but still no luck. Regards, "Anthony Jones" <Ant(a)yadayadayada.com> wrote in message news:eu7YHM%23mIHA.2268(a)TK2MSFTNGP02.phx.gbl... > "shyPotter" <someone(a)noone.com> wrote in message > news:%23wQtwN9mIHA.4292(a)TK2MSFTNGP04.phx.gbl... >> Hi all, >> >> I am having error on my XP machine while on 2003 it works >> >> >> Error Type: >> Server object, ASP 0177 (0x800401F3) >> Invalid class string >> /index.asp, line 19 >> >> @ Line 19 >> >> set Session("items") = server.CreateObject("scripting.dictionary") >> >> >> Can any one help please. Which dll to register. >> > > First open notepad and paste this into it:- > > Set o = CreateObject("Scripting.Dictionary") > MsgBox "Seems to work here" > > Save to desktop as Test.vbs. > > Double click the Test.vbs file. > > If you get the same error search your windows/system32 folder for > scrrun.dll > and register it. Try again. If that fails then its possible that an over > protective Anti-virus app is blocking it. > > If it all works fine from the VBS but you ASP page still fails then in IIS > manager find your page and open its properties. On the file security tab > turn of anonymous access and turn on Windows integrated. > > In IE make sure IE recognises your site as being in the intranet zone > (this > would normally be true if you using your machine name or "localhost" as > the > server name in the url). > > Does it work now? > > > -- > Anthony Jones - MVP ASP/ASP.NET > >
From: Anthony Jones on 12 Apr 2008 04:07 "shyPotter" <someone(a)noone.com> wrote in message news:OGGV1m$mIHA.5080(a)TK2MSFTNGP02.phx.gbl... > Thanks Anthony , > > I tried all these .VBS works but no solution, I tried what you said in this. > I searched on net as well found few soloution but non still helpfull. dll is > registred I changed registry values from Aprtment to Both and Both to > Aprtment and each time I restarted the machine. > > I am running Windows Live OneCare I have stopped that as well but still no > luck. > You tried turning off anonymous access for the page? Try a different DLL for example try CreateObject("ADODB.Recordset") does that fail? -- Anthony Jones - MVP ASP/ASP.NET
|
Pages: 1 Prev: ASP.Net Tutorials Next: HELP: managing multiple virtual folders of cloned websites |