0
votes
What View Engine are you using with ASP.NET MVC?
I've used NVelocity with MonoRail for some time but have recently switched to Spark for both Asp.Net MVC and MonoRail. The syntax seems very nat …
1
vote
Is ASP.NET MVC a step backwards in some ways?
I think it was a necessary step backwards, or better yet backtracking a few steps to move ahead.
The web had evolved in a direction that diverged significantly from ASP.NET's core design pr …
7
votes
How does Spark View Engine’s performance compare to ASP.NET?
The view templates are parsed to generate and compile a class that does nothing more than write output. After the first request of a view there's no real work being done other than to create an ins …
3
votes
What’s the equivalent syntax for this MVC view code in Spark?
The
<% if (UserService.IsAuthenticated && !Model.Post.IsDeleted) { %>
<% Html.RenderPartial("Reply", new ReplyViewModel { Id=Model.Post.PostId, CssClass="respon …
3
votes
Cannot use Html.ActionLink in asp.net mvc spark files
(Copied from Rei Roldán's answer in Spark discussion group)
This is where the h …
1
vote
Getting “The ‘WhatEver’ view or its master could not be found” with Spark View Engine when going to the login page
(Copied answer from Spark discussion group)
Should be fine - if you start with …
1
vote
Is there an ASP MVC equivilent to JSTL tags?
Yep, Spark is probably your friend on that one. Looks pretty similar in spirit.
<c:forEach var="c" items="${Customers}"> …
