all groups > dotnet jscript > september 2004 >
You're in the

dotnet jscript

group:

Porting from JScript to JScript.Net - compiler error


Porting from JScript to JScript.Net - compiler error Jon Maz
9/3/2004 4:55:41 PM
dotnet jscript:
Hi All,

Am trying to port an existing asp 3.0 app written in JScript to JScript.Net,
and have just had the following error:

COMPILATION ERROR
Description: An error occurred during the compilation of a resource
required to service this request. Please review the following
specific error details and modify your source code appropriately.

COMPILER ERROR MESSAGE:
JS1113: Only valid inside a class definition

SOURCE ERROR:
Line 11242: }
Line 11243:
Line 11244: protected override function FrameworkInitialize() {
Line 11245: this.__BuildControlTree(this);
Line 11246: this.FileDependencies =
ASP.test2_aspx.__fileDependencies;

SOURCE FILE:
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\Temporary
ASP.NET Files\root\6ee7ca74\d173ebaf\rcfu-d1s.0.js
Line: 11244

All I can find in the documentation about this is the following:

TemplateControl.FrameworkInitialize Method
This member supports the .NET Framework infrastructure and is not
intended to be used directly from your code.

This isn't looking good.... does anyone know how to deal with this?

TIA,

JON

PS First posted to aspmessageboard
http://www.aspmessageboard.com/forum/ASPPlus.asp?M=725525&T=725525&F=36&P=1




Re: Porting from JScript to JScript.Net - compiler error Rashad Rivera
9/4/2004 12:39:08 AM
At first glance, it seems like you are using the protected attribute outside
of a class declaration. I can't tell for sure until I see more of the code
block around this error.

- Rashad Rivera
Omegus Prime

[quoted text, click to view]

Re: Porting from JScript to JScript.Net - compiler error Rob Morrison
9/4/2004 7:54:02 AM
I have seen this when your code brackets (braces) don't match. You may have
more open braces than close braces. Check your included files as well.


Re: Porting from JScript to JScript.Net - compiler error Greg Burns
9/5/2004 12:57:19 PM
Make sure ASPNET user has proper rights to required temp folders.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconASPNETRequiredAccessControlListsACLs.asp

Sounds somewhat reminiscent of the issues caused with the IIS lockdown tool.

Greg

[quoted text, click to view]

Re: Porting from JScript to JScript.Net - compiler error Jon Maz
9/5/2004 5:45:20 PM
Hi Rashad,

That's just the thing, there *is* no code to show you - well, none that I
wrote, anyway.

All I did was take an existing (and working) asp 3.0 application written in
JScript, changed all the .asp extensions to .aspx, added a web.config file
to the root folder, and then got this error message - which clearly doesn't
apply to any code that *I* wrote!

In fact, since the error is clearly in a piece of dotnet code, the only
thing that makes any sense to me is that this is a bug somewhere in the
Dotnet Framework - which would mean that I can't do anything to fix it.

Any other interpretation of the situation would be more than welcome...

:-(

J




---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.749 / Virus Database: 501 - Release Date: 01/09/2004

Re: Porting from JScript to JScript.Net - compiler error Jon Maz
9/9/2004 11:24:48 AM
Hi All,

Well, after much research I finally found out what was causing the problem,
and can still hardly believe it - it was one function which used the JScript
"arguments" property:

function XXX(.........)
{
if (XXX.arguments.length < 3 ...)
}

Removing the line with .arguments removed the error! As to why the compiler
came up with such an unhelpful error message, without pinpointing the file &
line number, is beyond me...

Anyway, onwards and upwards to the next problem! Thanks to all for their
helpful contributions.

JON

AddThis Social Bookmark Button