I decided to try and start using te global.asa file, I couldn't find it so I decided to make a new one. After creating it and trying to run my default.asp page it gives me this error:
error 'ASP 0115'
Unexpected error
/default.asp
A trappable error occurred in an external object. The script cannot continue running
If I delete the global.asa file the page works again. All I have in the global.asa is the following:
<script language="VBScript" RUNAT="Server">
sub Application_onStart()
end sub
sub Application_onEnd()
end sub
sub Session_onStart()
end sub
sub Session_onEnd()
end sub
</script>
Does anyone know what the problem might be?
error 'ASP 0115'
Unexpected error
/default.asp
A trappable error occurred in an external object. The script cannot continue running
If I delete the global.asa file the page works again. All I have in the global.asa is the following:
<script language="VBScript" RUNAT="Server">
sub Application_onStart()
end sub
sub Application_onEnd()
end sub
sub Session_onStart()
end sub
sub Session_onEnd()
end sub
</script>
Does anyone know what the problem might be?