Archive for the ‘ASPX Error’ Category
Error: The installer was interrupted [AppName] could not be installed
Posted by: admin in .NET, ASP.Net, ASPX Error, Deployment on November 2nd, 2011
Installing a .net application on different platforms would be a headache if you are not familiar with every details on how it work.
One of the error more often happened is the “The Installer was interrupted [AppName] could be installed. You need to restart the installer to try again.” as depicted below
To resolve this issue, there’s a service that need to be enabled “IIS Metabase and IIS 6 configuration compatibility”
Under windows 7:
- Go to Control Panel
- Programs
- Turns windows features on or off.
- Launch the Server Manager
- Roles
- enable theĀ IIS Metabase and IIS 6 configuration compatibility
Error:BC30456: ‘CreateResourceBasedLiteralControl’ is not a member of
Posted by: admin in .NET, ASPX Error on August 22nd, 2011
I’m getting this error after I’ve published an aspx application to the webserver. After a lot of research I’ve found a fix that works for me, this is to change the class visibility of the aspx.vb files from Private to Public.
Error:The server tag ‘asp:BulletedList’ is ambiguous. Please modify the associated registration that is causing ambiguity and pick a new tag prefix.
Posted by: admin in ASPX Error on August 19th, 2011
Fortunately, there are a couple of fixes, and they are reasonably easy. One fix is to change the TagPrefix attribute of the @Register directive that the Toolkit adds to a page from “asp” to something else. I like “act”, which so far has not caused any other collisions. Or, if you use the Toolkit a lot and don’t mind changing its source code, look for the AssemblyInfo.cs file in the AjaxControlToolkit project in the source code and change the following line to use something else, then recompile the project and start using the new assembly.