vote up 0 vote down star

I have to write this script to send a mass email reminder but our head dev is out of town so I can't do a patch to the .dll, instead I am using an .aspx page that I can just push out. Problem is I cannot seem to get it to run, I put it into an open directory that allows browse-to-able-ness (avoiding the map routing) but I keep getting this error:

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load type 'KODmvc.Content.other.WelcomeEveryone'.

Source Error:

Line 1:  <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WelcomeEveryone.aspx.cs" Inherits="KODmvc.Content.other.WelcomeEveryone" %>
Line 2:  
Line 3:  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


Source File: /Content/other/WelcomeEveryone.aspx    Line: 1

What's the deal? Is it because I did not recompile the whole MVC app into the .DLL and so it doesn't know how to render this? But I thought I didn't need to do that for a webforms file?

flag

47% accept rate
It seems that the code behind file WelcomeEveryone.aspx.cs is missing. If you haven't compiled the site and only included the aspx it won't be able to find the page class. – Darin Dimitrov Oct 30 at 21:57
code behind is there – Ryan Oct 31 at 4:15

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.