Does anybody know what this means?
'CreateResourceBasedLiteralControl' is not a member of 'ASP.index_aspx'
It comes up in my page: (index.aspx)
(index.aspx.vb)
'CreateResourceBasedLiteralControl' is not a member of 'ASP.index_aspx'
It comes up in my page: (index.aspx)
Code:
<%@ Register TagPrefix="UserControl" TagName="Head" Src="mainHead.ascx" %>
<%@ Register TagPrefix="UserControl" TagName="Foot" Src="mainMenu.ascx" %>
<%@ Page Language="vb" Src="index.aspx.vb" Codebehind="index.aspx.vb" AutoEventWireup="false" Inherits="index" %>
Code:
Imports System
Public Class index
Inherits System.Web.UI.Page
#Region " Web Form Designer Generated Code "
'This call is required by the Web Form Designer.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
End Sub
#End Region
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
End Sub
End Class