Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

'CreateResourceBasedLiteralControl' is not a member of 'ASP.index_aspx

Status
Not open for further replies.

qwert231

Programmer
Sep 4, 2001
756
US
Does anybody know what this means?
'CreateResourceBasedLiteralControl' is not a member of 'ASP.index_aspx'

It comes up in my page: (index.aspx)
Code:
<%@ Register TagPrefix=&quot;UserControl&quot; TagName=&quot;Head&quot; Src=&quot;mainHead.ascx&quot; %>
<%@ Register TagPrefix=&quot;UserControl&quot; TagName=&quot;Foot&quot; Src=&quot;mainMenu.ascx&quot; %>
<%@ Page Language=&quot;vb&quot; Src=&quot;index.aspx.vb&quot; Codebehind=&quot;index.aspx.vb&quot; AutoEventWireup=&quot;false&quot; Inherits=&quot;index&quot; %>
(index.aspx.vb)
Code:
Imports System

Public Class index
 Inherits System.Web.UI.Page

#Region &quot; Web Form Designer Generated Code &quot;

 '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
 
Still not sure why this is happening, should I post all my code?
 
You know what? I just combined everything into 1 htm file. I needed no code for this page.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top