CFF KB - Carrz-Fox-Fire Promotions Knowledge Base
CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.Knowledge Base
- Breadrumbs:
BC30456: 'InitializeCulture' is not a member of 'ASP.default2_aspx'.
- Article ID:
6260 - Date Created
Wednesday, January 11, 2023 - Last Updated
Wednesday, January 11, 2023 - This Article Has been Viewed
60 times - Short Desc
InitializeCulture is not a member of ASP.default2_aspx - Details
When designing your page, you must ensure all tags are correctly entered and match between your main.aspx and CodeFile or CodeBehind files. - Recreate Issue
This error will occur if you have a namespace in your codefile and it does not match the @ Page tag in your main.aspx file.<%
@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2"
%> - Resolve Issue
This error will happen if you have a namespace in the CodeFile
Example
(Substituting TagLib for your NameSpace name)
Namespace TagLib
To correct this issue.
Go inside of your CodeFile and replace
>Inherits="Default2"
with
Inherits="TagLib._Default"<%
@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2" %>
%>
to<%
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="TagLib._Default"
%>
--------
Related Articles
ASPNET: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl)«






Share With Friends (Updated 6-8-2010)
Recent Articles
- Microsoft OLE DB Provider for SQL Server error '80040e0c' - Command text was not set for the command object 47
- Microsoft OLE DB Provider for SQL Server error '80040e14' Must declare the scalar variable 55
- asp.net cannot upload more than 25mb and will receive the error 404 - File or directory not found 58
- It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. 74
- ASPNET: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl) 76
All Topics
- Coming Soon - Knowledge Exchange
Trending Articles
- Microsoft VBScript runtime error '800a0046' Permission denied FileSystemObject 23481
- Microsoft OLE DB Provider for SQL Server error '80040e57' String or binary data would be truncated. or The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data. 20131
- ADODB.Parameters error '800a0e7c' Parameter object is improperly defined 18213
- After Effects warning: Audio conforming failed for the following file .cfa. Perhaps due to disk space 15947
- The backup set holds a backup of a database other than the existing 15629