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
372 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
All Topics
- Coming Soon - Knowledge Exchange
Trending Articles
- Microsoft VBScript runtime error '800a0046' Permission denied FileSystemObject 24695
- 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. 21297
- ADODB.Parameters error '800a0e7c' Parameter object is improperly defined 19544
- After Effects warning: Audio conforming failed for the following file .cfa. Perhaps due to disk space 17785
- The backup set holds a backup of a database other than the existing 16825