Click here to Skip to main content
15,790,807 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have used Chart control in my asp.net3.5 application and I have upload these files
to server then it generate an error message.
"xyzfile.aspx" has not been pre-compiled

Please solve these error.

Thanks
Posted

1 solution

This error will come when a reference is specified in web.config and deployment folder/site does not contain these dlls installed in the system or bin folder does not contain them(if they are private assemblies).
<add assembly="Namespace1.NameSpace2, Version=x.x.x.x, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
If your web.config contains any assemblies like this and deployed server doesnot contain these assembiles in bin or GAC, then this error will occur.

Ref:http://forums.asp.net/t/956297.aspx/2/10?Web+Deployment+Project+quot+has+not+been+pre+compiled+quot+[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900