Hi
Is it possible to create a MVC website without having to create a MVC web application via Visual Studio? Basically I just want it to be a simple website and not to have to recompile it in VS. I want to develop it as a 'Web Site' on a test server and connect with front page extensions in VS express. If I copy the files from a MVC Application, remove the namespace of the project in the files I just get errors:
Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="_Default" %>
Default.aspx.cs
using System.Web; using System.Web.Mvc; using System.Web.UI;
public partial class MyDefaultPage : System.Web.UI.Page { public void Page_Load(object sender, System.EventArgs e) { ....
Parser Error Message: Could not load type '_Default'.
Any ideas much appreciated.