Could not load the assembly 'App_Web_m5skcfcf'. Make sure that it is compiled before
i uploaded certain pages one is working and another one is not ,one which is non database driven is working fine and another which is db drive throws me an error ,
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load the assembly 'App_Web_m5skcfcf'. Make sure that it is compiled before accessing the page.
Source Error:
Line 1: <%@ page language="VB" autoeventwireup="false" inherits="Default3, App_Web_m5skcfcf" %>
Line 2:
Line 3:
Source File: /default3.aspx Line: 1
so far it seems to me not any problem with the code b/c its working fine at local machine .also on google i did not find any thing which resolve my problem so far. any help !!
Re: Could not load the assembly 'App_Web_m5skcfcf'. Make sure that it is compiled bef
Re: Could not load the assembly 'App_Web_m5skcfcf'. Make sure that it is compiled bef
Hey,
I would definitely go ahead and try what avrail has suggested. This is basically an issue with the on the fly compilation of your web site pages, and conflicts with existing files etc. The is one of the many reasons that I recommend that people use Web Applications (compiled into one assembly) rather than using the web site template, where pages are compiled on the fly.
Gary