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

1
vote
1answer
66 views

C# Code Block in Spark View Engine?

Can the Spark View Engine handle C# Code blocks like Razor can? For example, I have the following in Razor: @{ var currentController = ViewContext.RouteData.Values["controller"] as string ?? ...
1
vote
2answers
175 views

Choice of View Engines in MVC4?

I am developing a mobile application using ASP.Net MVC4.0, JQuery Mobile, HTML5. As I am new to ASP.Net MVC, I am not sure whether to use Razor(.cshtml) or webForm(.aspx) view engine. Can anyone ...
1
vote
2answers
85 views

Strongly Typed View in Spark View Engine and MVC3

I am having a play around with the different view engines that one can use with ASP.net MVC. I am trying out Spark, but I am stuck on how I can get my View to be Strongly typed. I have done the ...
3
votes
1answer
111 views

Replacing single quotes with double Quotes

In my C# MVC view code I have a a hidden input field <input type='hidden' name='foo' value='${r.data}'/> On my local machine when testing it generates the html source. <input ...
0
votes
1answer
78 views

Spark view engine with array of namevaluepair

I would like to use the Spark view engine (DirectUse) for email templating. So I have dived into the Spark examples (EmailOrTextTemplating). But what I want is to use an array of NameValuePair(String ...
1
vote
1answer
26 views

Update master template from child template using Spark

I have the following nav section in my master template. I want to set the active class to the correct nav element from the child template. <ul class="nav nav-pills pull-right"> <li ...
0
votes
1answer
166 views

For loop in Spark view engine / ASP.NET MVC

I'm using Spark with WPF. This works fine and I'm able to format a template and pull in scalar properties from a custom DTO (my model). I'm having difficulty getting for loops to work though. From ...
1
vote
1answer
83 views

Spark view engine performance with prefix in MVC 2 project?

I use spark view engine in my MVC 2 project. By default, Spark tags are unqualified, without prefix. My question is: Do I gain performance when put prefix in my web.config file? Put differently, ...
0
votes
0answers
148 views

Avoid duplicate validation messages with client-side validation

all. I've got validation using DataAnnotation attributes on my view model. My viewmodel actually has a nested class that is used as the parameter to a generic list, and the properties of the nested ...
1
vote
2answers
149 views

Preventing browser caching after web app release: change how ASP.NET MVC3 converts virtual URLs

I'd like to prevent browser caching of JavaScript, CSS, and image files for a given release of my software. I'm using ASP.NET MVC3 with the Spark view engine, and I believe I can do this by appending ...
0
votes
1answer
53 views

Can SparkView Engine create custom Tag?

Here Is there an ASP MVC equivilent to JSTL tags? it is said that there is equivalent between jstl for loop and sparkview engine loop. But beyond that can sparview allow to create custom tag without ...
1
vote
2answers
135 views

MVC (spark view engine) Whats the difference between x and m?

I came across something strange/weird when coding a spark file. I knew about Html.TextBoxFor, but i noticed my view was rendering it as pure text when i used this: ${Html.TextBoxFor(x => x.Name}} ...
1
vote
2answers
260 views

ASP.NET MVC View-Model: reload from backend on invalid post or put all properties in hidden inputs

I'm using ASP.NET MVC3, and I've got a view-model with several properties, some of which are for display to the user, and some of which are used as inputs from the user and may have default values. ...
0
votes
2answers
145 views

Nancy - how do you add htmlHelpers into the Spark virew

I want to use the htmlHelpers in my spark view but I keep getting the following errors. error CS0234: The type or namespace name 'Mvc' does not exist in the namespace 'System.Web' (are you ...
2
votes
1answer
130 views

Trouble using viewdata of the Spark view engine to call a javascript function with parameters containing quotes

I'm developing a website using the Spark view engine. One of the spark views has viewdata defined that is used in javascript defined in that same spark view and looks (in short) like this: ...
1
vote
1answer
89 views

Emiting/escaping a dollar sign following by curly brackets

I'm try to emit a literal dollar sign, opening curly bracket, text, and closing curly bracket using the Spark view engine. How can I get get Spark to emit ${Hello}, rather than trying to evaluate a ...
1
vote
1answer
132 views

Using Razor and Spark simultaineously in ASP.NET MVC 2 project

How to use certain view engine for certain controller? Now my project using MVC2 + Spark view engine. I want to migrate to Razor view engine. Project so big, and I want to do this step-by-step.
2
votes
0answers
156 views

ASPX View Engine

So the Razor view engine is open source and can be used outside MVC specific implimentations. However, for my specific project (Where I want to enable this functionality inside WordprocessingML Razor ...
3
votes
1answer
282 views

Spark view engine & MVC.NET 4

Does anyone know if Spark will be making the transition across to MVC.NET 4? I have taken a look at the public branches on the repo but nothing there suggests any effort, also there has been no ...
2
votes
1answer
185 views

DateTime editor template not rendering date in correct format

I have a page with a datetime input on it, along with the customary JQuery datepicker, and an editor template for "Date" which formats the date in the text box and the date that is passed into the ...
2
votes
2answers
126 views

Do ViewEngines Impact The Perfomance of Asp.Net MVC?

Last evening i was thinking that there are different view-engines in asp.net mvc like; Spark Web Forms Razor (i know the are differed syntactically as well but) Do they effect the perfomance of ...
2
votes
1answer
433 views

MVC3, Spark View Engine: The type or namespace name 'Mvc' does not exist in the namespace 'Microsoft.Web'

I'm getting this error when I try to use access an ASP.NET MVC3 application using the Spark View Engine published to my local IIS 7 server. I've looked at this answer and have already followed that ...
0
votes
1answer
89 views

Can you create Spark view engine bindings with plain html in?

I really like the bindings feature of spark, it really improves markup but I have come across a small problem. Is it possible to create a spark binding that doesn't have any code in it just html? For ...
2
votes
2answers
161 views

increment variable value in spark view engine

I try to go through a for each loop and increment value of variable to name my label with below code <set i="0"/> <div each="var x in Model"> <input name='field-${i}' ...
1
vote
1answer
119 views

Executing mvc views in a separate appdomain

I am using Spark view engine and I am trying to work out a way to get the views to run from a separate AppDomain. The reason I want to do this is because Spark compiles the files into assemblies and ...
1
vote
1answer
93 views

Overloading spark view engine bindings

I have created a binding to create a tag for Html.ActionLink html helper like this that works fine: <element name="actionlink"> Html.ActionLink("child::*", "@action", new ...
2
votes
1answer
225 views

Using an editor template to edit values in a list Spark View Engine

I'm reasonably new to Spark, and I'm finding it difficult to find resources for what are generally simple questions, whereas I can often find the answers in Razor. Though mostly there is a good cross ...
0
votes
2answers
120 views

Dynamically selecting spark master layout at render time

I need to choose my spark master layout every time a request for a page is made. I attempted to so this by setting a ViewBag.Layout value in OnActionExecutingand referencing this value in the master ...
2
votes
1answer
464 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 ...
1
vote
1answer
70 views

Referencing partial in sub folder with Spark

Apparently you can reference a partial with Spark view engine as a tag with the same name as the partial e.g: <myPartialName /> instead of using <render partial="myPartialName" /> That is ...
1
vote
1answer
124 views

Add a Shared View Folder using the Spark View Engine

I am trying to register a shared view folder using the spark view engine. The code I currently have: var folder = @"C:\MySharedViews"; settings.AddViewFolder(ViewFolderType.FileSystem, new ...
0
votes
1answer
109 views

MVC2 - Checkboxes added to form via JQuery not seen in formcollection on JQuery submit

I took over another project and have fixed everything else except this one problem. I think I've seen this before, but can't for the life of me remember what the solution was. The table in the ...
5
votes
2answers
130 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 ...
1
vote
2answers
144 views

Add ViewFolder in config for Spark in ASP.NET MVC Unit Test project

I'm sending an email from my ASP.NET MVC app using the Spark View Engine based on this example by Andrew Kharlamov. I've setup a unit test, CanSendEmail, but I need to specify the viewfolder in the ...
0
votes
1answer
398 views

adding URL to html.grid column

!{Html.Grid(Model.Results) .Columns(column => { column.For(x => x.Title).Named("Article Name"); column.For(x => x.Sites); column.For(x => ...
1
vote
1answer
102 views

Getting a list of Spark Descriptors for precompiling spark views

I'm trying to get spark precompilation to work and going through the docs, I can see this: engine.BatchCompilation(targetPath, Global.AllKnownDescriptors()); It doesn't look like the ...
1
vote
1answer
135 views

Spark Include tag with variable in href

I want to include a spark view in another spark view. I've tried to use the include tag. But it doesn't seem to support variables as part of the href attribute. Eg. <include ...
2
votes
1answer
166 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 ...
0
votes
1answer
99 views

Does Spark view engine support anonymous types as viewdata

I'm setting an anonymous type like this: PropertyBag["model"] = new { IsHome = areaId == "Home", ...
0
votes
1answer
117 views

Define Custom Attributes for Spark View Engine

Is there any way (preferably without modifying the source) that you can define a custom attribute to apply to your spark elements? For example, I'd like to define a "permission" attribute so that I ...
1
vote
0answers
114 views

MVC How to affect a Layout page from a View Page

I'm about to describe a specific problem that we have on our MVC project but one which is similar to other problems that follow the same pattern. I mention this because i want to think about the ...
2
votes
2answers
366 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"> ...
1
vote
1answer
119 views

Conditional rendering in “Segments”

So I have the following spark partial <default extension="null" footer="null" header="null" type="string"/> <div class="mod ${extension}?{extension != null}"> <div class="inner"> ...
2
votes
2answers
555 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 ...
0
votes
2answers
148 views

Stop Sparkview escaping html

I am trying to output some HTML video tags park of which include <source src="${Model.WebMFilename}" type='video/webm; codecs="vp8, vorbis"' /> However in the browser this renders as ...
1
vote
0answers
268 views

Spark View Engine Missing Libraries visual studio 2010

I am using the Spark View engine with asp.net mvc3, gotta say I love spark bindings are awesome! Everything works fine however development is extremely painful at the moment because any time I change ...
4
votes
2answers
209 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 ...
0
votes
3answers
110 views

Add script to Sparkview page

I have an application based on Sparkview. I need to feed the current url to some jquery, I could do with doing something along the lines of http://forums.asp.net/t/1550405.aspx I tried to modify the ...
2
votes
2answers
408 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 ...
0
votes
0answers
228 views

Spark View Engine Error Entity NBSP Not Defined

I'm just starting to work with the Spark View Engine in a very mature MVC2 application. I receive numerous build errors stating Entity nbsp not defined directing me to a line of code similar to ...

1 2 3 4