Hi,
I am using the Spark view Engine instead of the default ASP.NET view engine and I'd like to be able to add a 'spark' view instead of a 'ASP.NET' view when adding a new view to the project. I assume this would just be a template of some kind but I can't seem to find it.
for example I want it to generate a view something like this;
<use namespace="Business.Core.DomainObjects.Gadget"/>
<use master="application" />
<content:title>Gadgets</content:title>
<div>
</div>
instead of this;
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Get</title>
</head>
<body>
<div>
</div>
</body>
</html>