"The base class includes the field 'ScriptManager1', but its type (System.Web.UI.ScriptManager) is not compatible with the type of control (System.Web.UI.ScriptManager)."
Anyone else come across this error?
|
"The base class includes the field 'ScriptManager1', but its type (System.Web.UI.ScriptManager) is not compatible with the type of control (System.Web.UI.ScriptManager)." Anyone else come across this error?
| |||
feedback
|
|
I managed to fix it by adding this to web.config:
I believe it forces the .net runtime to use the new versions of those assemblies. | |||||
|
feedback
|
|
I've run into this issue when upgrading a web application from .NET 2.0 to 3.5. Check your web.config is correctly set for .NET 3.5. I added/changed the following:
| |||
|
feedback
|
|
Adding the section above fixed the problem on our dev machines and test server, but not our live servers. It turns out that if your web.config file contains an xmlns attribute of xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0" then you will get a GAC conflict: BAD.web.config etc but this version from the devt machine is fine: GOOD.web.config etc So make sure that 2.0 reference is removed from the top of your web.config file. | |||
|
feedback
|
|
We had a very similar problem. The development platform worked fine but once the site was deployed to the testing site it broke with the same message as the original poster above. We had subdirectories under our controls directory to group user controls together. The problem appeared to be a control in the subdirectory trying to use a control in the directory above it. Our first fix was to clone the toplevel control to the subdirectory. We then hit on the idea of creating a parallel sibling subdirectory and parking the control there. That fixed the problem without having to resort to (a) flattening our controls directory structure or (b) clone the same control in various subdirectories. So our solution is to never refer to a control in a parent directory from a user control in a subdirectory. I hope this helps out. | |||
|
feedback
|
|
This can also be resolved by changing the project reference to System.Web.Extensions 1.0.61025 or other version, Make sure the project reference, web config and the ajax toolkit all match the same version. | |||
|
feedback
|
|
We had this same problem when precompiling our application from the command line using the "Application is updatable" flag:
removing the -u flag solved this issue. Don't ask me why! | |||
|
feedback
|
|
You can also solve this problem in the .vbproj file (in my case). Check for these entries:
This seems to also force the use of the 3.5 version DLLs. | |||
|
feedback
|
|
Very similar issue. "The base class includes the field 'WebUserControl1', but its type (common_WebUserControl) is ..." changed markup files from | |||
|
feedback
|
|
in my case, just switched the build framework from 2.0 to 3.5. This is done by right clicking on the project name (top of solution explorer) and select "Property Pages". from there, select build option and change the framework. It should update web.config and all needed references. HTH Dave | |||
|
feedback
|
|
Had a similar problems updating from 3.5 to 4.0. In my case, there is a root website, and virtual IIS application directories underneath this. The code worked fine in my development and staging areas. As soon as it went onto the production server, it crashed. Even though the code was the same. My solution was to delete the virtual directory and recreate it. Making sure that the application pool is correct, and the asp.net version is correct. (my servers are Windows server 2003 with IIS6). One other important note - you cannot run multiple asp.net versions in the same application pool. | |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.