Tagged Questions

Spark is a view engine for ASP.NET MVC, Castle Project MonoRail, FubuMVC, NancyFx, JessicaFx and OpenRasta frameworks. The idea is to allow the html to dominate the flow and the code to fit seamlessly.

learn more… | top users | synonyms

135
votes
7answers
24k views

ASP.NET MVC View Engine Comparison

EDIT: added a community wiki answer to begin capturing people's experience with various View Engines. Please respectfully add any experiences you've had. I've been searching on SO & Google for ...
25
votes
3answers
8k views

How do I get the collection of Model State Errors in ASP.NET MVC?

How do I get the collection of errors in a view? I don't want to use the Html Helper Validation Summary or Validation Message. Instead I want to check for errors and if any display them in specific ...
23
votes
7answers
4k views

ASP.NET MVC partial views: input name prefixes

Suppose I have ViewModel like public class AnotherViewModel { public string Name { get; set; } } public class MyViewModel { public string Name { get; set; } public AnotherViewModel Child { ...
13
votes
3answers
2k views

ASP.NET MVC Spark view engine

What pros(positive sides) of using Spark view engine for ASP.NET MVC project. Why it better then default view engine?
12
votes
7answers
2k views

ASP.NET MVC Email

Is their a solution to generate an email template using an ASP.NET MVC View without having to jump through hoops. Let me elaborate jumping through hoops. var fakeContext = new ...
12
votes
4answers
734 views

Spark T4 templates for ASP.NET MVC

I was just curious if any Spark T4 templates already exist that match/are similar to the out of the box web forms view templates (create, edit, details, etc...). My Google skills didn't lead me to any ...
10
votes
5answers
798 views

To Spark or not to Spark?

Been on a huge learning binge with ASP.MVC 2 lately, and recently uncovered there are different rendering engines out there... Spark especially caught my attention, couple of things though. I have ...
8
votes
4answers
1k views

Using Spark View Engine in a stand alone application

My client application needs to generate HTML. I'd like to use a template/view engine solution like Spark, but I'm not sure whether Spark can be used outside of an ASP.NET application. Does anyone know ...
7
votes
2answers
368 views

Mixing spark and webform view engines

Is it possible to use multiple view engines? I have a large(ish) site that is already using the webforms view engine, but we would like to move to spark for new features. Is this supported? any ...
7
votes
6answers
3k views

Using asp.net mvc 2 features with the spark view engine

I am working with an ASP.NET MVC project which was originally started from the CodeBetter.Canvas project - and I'm trying to move to ASP.NET MVC 2. I successfully upgraded my project using Eilon's ...
6
votes
4answers
2k views

alternative asp.net MVC view engines

I was wondering if there was a general consensus on the "best" alternative view engine for asp.net MVC. So far I know of Spark, Brail, NHaml but what about others?
5
votes
2answers
73 views

Can not render view in TinyWeb framework

I am trying to render a simple view with the TinyWeb framework and Spark view engine. Enviroment is Visual Studio 2011 developer preview & .net 4.5 Rendering a template with no model binding ...
5
votes
2answers
166 views

Is the Spark ViewEngine compatible with Glimpse?

Just came across the glimpse tool (getglimpse.com) and would like to try it out on my Spark-powered site (VS2010, MVC3), but come unstuck at the first hurdle. When I run my site I get the following ...
5
votes
5answers
1k views

Spark-View-Engine with ASP.NET MVC2

How do you modify a ASP.NET MVC 2.0 project to work with the Spark View Engine? I tried like described here: ...
5
votes
5answers
410 views

What are the benefits of using an alternate view engine?

I am playing with ASP.NET MVC and I see that there are a few alternate view engines available for it such as NHaml and Spark. My question is why would you use an alternate view engine? I don't see a ...
5
votes
2answers
931 views

How does Spark View Engine's performance compare to ASP.NET?

I'm interested in using Spark for an open source pet project of mine that runs with the asp.net mvc framework. I wonder if anyone has real experience with it and knows how it performs compared to the ...
4
votes
2answers
110 views

Spark email templates and master layouts

I'm using the spark view engine outside of MVC to create HTML emails. I've pulled the common layout elements into a master (template) view (Application.spark) and referenced the master view from my ...
4
votes
2answers
193 views

Status of Spark View Engine

It’s been a while since the community got any feature releases from the spark team. Has it ceased development? With the advent of Razor, has Louis moved on? The least release was in March and the last ...
4
votes
2answers
963 views

ASP.NET MVC View Engine Resolution Sequence

I created a simple ASP.NET MVC version 1.0 application. I have a ProductController which has one action Index. In the view, I created a corresponding Index.aspx under Product subfolder. Then I ...
4
votes
2answers
894 views

Using a different viewmodel in partial view using Spark view engine

Using ASP.NET MVC & Spark, I have a view that is listing a number of searches. The view has the following declaration at the top: <viewdata model="IEnumerable<SearchModel>" /> On ...
4
votes
1answer
588 views

How to stop Spark View Engine HTML encoding?

Even with the following in spark section of web.config: <pages automaticEncoding="false"> Things between ${...} Still get passed through H(...), which HTML encodes it. How change this or ...
4
votes
3answers
3k views

Cannot use Html.ActionLink in asp.net mvc spark files

I'm using the spark view engine with my asp.net mvc application. In my aspx pages, I can succesfully use Html.Actionlink, but when I attempt it in spark files, it doesnt show up in intellisense, and ...
3
votes
3answers
319 views

Spark Globalization with ASP.NET MVC

I am using the spark viewengine, asp.net mvc, and .resx files. I want to set a language through my custom SessionModel (Session) which is registered through Castle.Windsor and has a string property ...
3
votes
2answers
74 views

Embedding a spark variable to make up a string

Hi new to spark so this should be simple. I'm converting an old webfoms page to mvc using spark. I want to use the Base.Application to make up the src of a url original markup <img alt="" ...
3
votes
2answers
2k views

Spark VS 2010 intellisense

I was thinking about switching one of my projects (and after that subsequently other projects too) to Spark View Engine but after todays research I ran into problem of a lack of Intellisense for ...
3
votes
2answers
432 views

Spark view engine - why there is no VS integration in version 1.1?

I downloaded Spark 1.1 release from http://sparkviewengine.codeplex.com/releases/view/27601 and cannot find the msi package for Visual Studio integration promised in docs. Can anyone explain why?
3
votes
2answers
87 views

How do we represent the following peice of view code in Spark view?

<% using (Html.BeginForm("AddToCart", "Cart")) { %> <%= Html.Hidden("ProductID", pr.ProductID) %> <%= Html.Hidden("returnUrl", ...
3
votes
2answers
522 views

How to use Html.RenderAction in SparkView Engine?

I am getting an error when I use it like this !{Html.RenderAction("Action", "Controller")} I had to switch to webforms view engine and replace it with <% Html.RenderAction("Action", "Nav"); ...
3
votes
4answers
420 views

Would you use MVC 2 already or MVC 1? - S#arp Architectur + Spark View Engine

I am starting to develop a complex web application using S#arp Architectur and the Spark View Engine. By default MVC 1.0 is used. But i am thinking about upgrading everything to ASP.NET MVC 2. ...
3
votes
1answer
106 views

What is the difference between ${…} and !{…} in the Spark View Engine?

What is the difference between ${...} and !{...} in the Spark View Engine? There probably is a really distinct difference between the two, but I see them used interchangeably. Does one encode the ...
3
votes
1answer
452 views

Spark View Engine If statement applied to attributes

Is there any better, cleaner, way to set selected="true" ? Maybe a nested if? <select id="State" name="State" if="(Model.StateList.Count() > 0 )" > <option value="">Select ...
3
votes
2answers
190 views

Is is Possible to Use a Master Layout when using Spark in the form of the Direct Usage Example

Is is possible to use a master layout when using Spark in the form of the Direct Usage Sample? I have tried using both in my layout with my master layout in the same folder as the calling layout ...
3
votes
2answers
772 views

asp.net mvc 2 preview 2 and Spark

Some body tried Spark View Engine with asp.net mvc 2 preview 2? I have a problem with AREAS. It looks likes spark engine looks *.spark files inside of Views folders only instead of Areas folder in ...
3
votes
1answer
541 views

Spark View Engine Html.TextArea Bug?

I have a weird one. I'm trying to render out a standard textarea simply using the TextArea helper: <p> <label for="Message">Message:</label> ${ ...
3
votes
3answers
354 views

What's the equivalent syntax for this MVC view code in Spark?

I've got this code in an MVC project using the WebForms view engine and I'm trying to convert it over to Spark. How can I conditionally call a partial and pass it view data? <% if ...
2
votes
1answer
107 views

ASP MVC JsonResult renders as page instead of being captured by calling jQuery function

I'm having some problems with getting a JSON response from an ASP MVC controller method to be processed within jQuery - something that I've tried before without a problem - however I've obviously done ...
2
votes
1answer
79 views

Spark Model Methods crash in IF statement

I am using some methods from my viewdata model in Spark, but it doesn't work properly. I thought it was working previously, but it appears to be crashing. Am I doing something wrong that I am unaware ...
2
votes
2answers
163 views

add spark binding for Ajax.BeginForm

In our MVC3 project, we are using the Spark view engine. We have set up a Bindings.xml file that has several bindings including one for Html.BeginForm , as shown below: <element name="Form"> ...
2
votes
2answers
257 views

Migrating from Spark to Razor

We are gradually migrating a Spark based project to use Razor and I have come across something I can't seem to find an answer to. My line in my Spark master calls a sub View like so ...
2
votes
2answers
160 views

UnobtrusiveJavaScriptEnabled Spark View Engine

Does the UnobtrusiveJavaScriptEnabled feature of MVC3 work with other view engines beside Razor. I would assume so but all examples I have seen are for Razor I am currently using the Spark view ...
2
votes
2answers
87 views

My .net mvc Spark Views are not deployed on the server via MsDeploy (TFS 2010)

I don't understand.. When I build/deploy my .net mvc project in TFS 2010, all my Spark View (.spark files) are not deployed (Buil/deploy is OK). I have to configure something to deploy these views ? ...
2
votes
1answer
237 views

Rendering Spark views in Windows Azure ASP.NET MVC3 web app

I've built a web application in ASP.NET MVC3 with Spark 1.5 view engine - works fine running on my local development machine, but when hosted on Windows Azure it can't find the Spark Views. I get the ...
2
votes
1answer
309 views

SparkViewEngine: Using Url.Content in global variable in Application.Spark

I am using ASP.NET MVC 2 with SparkViewEngine 1.1 and I get the error message An object reference is required for the non-static field, method, or property 'Spark.Web.Mvc.SparkView.Url.get' when I use ...
2
votes
2answers
346 views

Rendering a spark view to a string

I'm trying to render a partial view as a string so it can be returned as HTML to a jquery ajax call. After a lot of searching I found this code. public string RenderAsString(string viewName, string ...
2
votes
3answers
163 views

Changing the View Engine in Asp.NET MVC

I am trying to learn ASP.NET MVC by porting my current app written in ASP.NET Webforms to MVC. For starters, I am planning to use the Default View Engine (WebFormsViewEngine) as most ...
2
votes
2answers
259 views

Spark View Engine Bindings with Class Html Attribute

I've been using the Bindings feature with the spark view engine to replace quite a few of my Html helper method calls. One problem I have is that I want to define a css class to pass in to the ...
2
votes
1answer
390 views

Spark views work initially, but then get a “Dynamic view compilation failed” error after 30 minutes or so

After pushing my asp.net mvc (with spark view engine) project to our live server yesterday I've started getting a strange error. Everything works fine initially, but after some time (maybe 30 minutes) ...
2
votes
2answers
426 views

Spark in a Console Application Targetting .NET 4.0

I was just wondering if anyone has successfully got Spark to work in a .NET 4.0 console application for compiling templates to HTML. Unfortunately I am getting the following error: Unhandled ...
2
votes
4answers
581 views

Configure the spark view engine!

I'm looking at launching a new site using the Spark View Engine, I am however having difficulty finding some referance to the set-up of Spark Using VS2010 and MVC2. Can anyone provide a referance to a ...
2
votes
1answer
153 views

Spark View Engine & Areas in ASP.NET MVC 2

Anyone got the areaDescriptorFilter working with the spark view engine in asp.net mvc 2? I don't even have the option to add a filter on the service as shown in the following: ...

1 2 3 4