ASP error with IIS6

ASP error with IIS6

am 13.07.2005 06:41:01 von fa

I am getting this error in my application:

A ScriptEngine threw exception 'C0000005' in
'IActiveScriptParse::ParseScriptText()' from
CActiveScriptEngine::AddScriptlet()'..

Does anyone know what might be the problem and how can I fix it?

The application is an ASP application that was running fine on Windows NT
but after I updated the OS to Windows 2003(IIS 6.0) it became unstable, there
is not a logic sequence to reproduce the error, but suddenly the application
starts to get the error above in every pages.

Re: ASP error with IIS6

am 13.07.2005 17:35:18 von tomk (A

"FA" wrote in message
news:0923F098-6E79-4578-9E1E-F1C440F109D0@microsoft.com...
>I am getting this error in my application:
>
> A ScriptEngine threw exception 'C0000005' in
> 'IActiveScriptParse::ParseScriptText()' from
> CActiveScriptEngine::AddScriptlet()'..
>
> Does anyone know what might be the problem and how can I fix it?
>
> The application is an ASP application that was running fine on Windows NT
> but after I updated the OS to Windows 2003(IIS 6.0) it became unstable,
> there
> is not a logic sequence to reproduce the error, but suddenly the
> application
> starts to get the error above in every pages.

Not sure how much this applies to IIS6:
http://www.aspfaq.com/show.asp?id=2355

Can you show the code that bombs?

--
Tom Kaminski IIS MVP
http://www.microsoft.com/windowsserver2003/community/centers /iis/
http://mvp.support.microsoft.com/
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS

Re: ASP error with IIS6

am 14.07.2005 02:36:02 von fa

The event log displays:
Source:Active Server Pages
Event ID: 5

It happens in every pages includes simple pages like Default.asp






onload="javascript:this.location='https://localhost/home/log in.asp'">




vspace="3">



Please wait.....


Javascript must be enabled to use the application.







"Tom Kaminski [MVP]" wrote:

> "FA" wrote in message
> news:0923F098-6E79-4578-9E1E-F1C440F109D0@microsoft.com...
> >I am getting this error in my application:
> >
> > A ScriptEngine threw exception 'C0000005' in
> > 'IActiveScriptParse::ParseScriptText()' from
> > CActiveScriptEngine::AddScriptlet()'..
> >
> > Does anyone know what might be the problem and how can I fix it?
> >
> > The application is an ASP application that was running fine on Windows NT
> > but after I updated the OS to Windows 2003(IIS 6.0) it became unstable,
> > there
> > is not a logic sequence to reproduce the error, but suddenly the
> > application
> > starts to get the error above in every pages.
>
> Not sure how much this applies to IIS6:
> http://www.aspfaq.com/show.asp?id=2355
>
> Can you show the code that bombs?
>
> --
> Tom Kaminski IIS MVP
> http://www.microsoft.com/windowsserver2003/community/centers /iis/
> http://mvp.support.microsoft.com/
> http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
>
>
>

Re: ASP error with IIS6

am 14.07.2005 16:30:29 von tomk (A

"FA" wrote in message
news:68A92BEF-57DB-4B6D-BF0C-218817699BA2@microsoft.com...
> The event log displays:
> Source:Active Server Pages
> Event ID: 5
>
> It happens in every pages includes simple pages like Default.asp
>
>
>
>
>
>
> > onload="javascript:this.location='https://localhost/home/log in.asp'">
>


>


>


>

> vspace="3">


>


>

Please wait.....


>

Javascript must be enabled to use the application.


>

>
>

There isn't any ASP code on that page. How about login.asp?

--
Tom Kaminski IIS MVP
http://www.microsoft.com/windowsserver2003/community/centers /iis/
http://mvp.support.microsoft.com/
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS

RE: ASP error with IIS6

am 15.07.2005 00:35:02 von fa









height="80%" border="0" cellspacing="0" cellpadding="0">



action="../Admin/validate.asp" method="post" id="password" name="login">





















colSpan=2>



size=6>  EasyL


align="right">
Name:

maxlength="10" >
align="right">
Password:
>
maxlength="10">
align="right">
name="submit">
align="right">
<% if session("login_locked")=true then %>

Sorry, you have been locked out of
the system.
Please
contact your Administrator.


<%else if session("logon_failed")=true then%>

Sorry, your login name has not been
found.

Please try
again.


<% end if
end if
%>






size=4>      You can contact us on
55 44 92
    


 








<%
Session("login_locked")=false
Session("logon_failed")=false
session("user_id")=""
%>


"FA" wrote:

> I am getting this error in my application:
>
> A ScriptEngine threw exception 'C0000005' in
> 'IActiveScriptParse::ParseScriptText()' from
> CActiveScriptEngine::AddScriptlet()'..
>
> Does anyone know what might be the problem and how can I fix it?
>
> The application is an ASP application that was running fine on Windows NT
> but after I updated the OS to Windows 2003(IIS 6.0) it became unstable, there
> is not a logic sequence to reproduce the error, but suddenly the application
> starts to get the error above in every pages.
>