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?