vote up 0 vote down star

All of the errors are on auto-generated files, not within the files that were created by me. Here are a few of them:

'Context' is not a member of 'auth_cookies'
'ProcessRequest' cannot be declared 'Overrides' because it does not override a sub in a base class
'Server' is not a member of 'ASP.auth_cookies_aspx'
Class 'auth_cookies_aspx' must implement 'Sub ProcessRequest(context As HttpContext)' for interface 'System.Web.IHttpHandler'

Any help would be appreciated.

EDIT: found out that the file it was looking for wasn't there, fixed that problem and that eliminated all the errors except one:

 Error-5: There can be only one 'page' directive.
 >> C:\Users\darren\Documents\Visual Studio 2008\WebSites\gs_ontheweb\auth\cookies.aspx

This is the contents of the cookies.aspx page:

<%@ Page Language="VB" MasterPageFile="~/theMaster.master" AutoEventWireup="false" CodeFile="cookies.aspx.vb" Inherits="auth_cookies" title="NOM COOKIES" %>

UPDATE: Turns out one of linked files had a link to another .aspx page, causing 2 page directives to be loaded.

flag

78% accept rate

closed as no longer relevant by Anders Nov 10 '08 at 16:39

2 Answers

vote up 1 vote down check

Did you put a <%@Page%> directive in your Master page? It should only have a <%@Master%> directive.

link|flag
Your comment got me thinking, found out the solution. Thanks – Anders Nov 10 '08 at 16:28
I originally was thinking about asking about the Page directive being on some other included page. But I assumed you weren't including other pages if you're using Master pages. :) Glad you found it in any case. – Kon M Nov 10 '08 at 16:30
vote up 0 vote down

No, the header of my MasterPage is:

<%@ Master Language="VB" CodeFile="theMaster.master.vb" Inherits="theMaster" %>

There is no <%@Page%> directive on the MasterPage.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.