Skip to content

Instantly share code, notes, and snippets.

@loudej
Created September 20, 2009 01:39
Show Gist options
  • Save loudej/189665 to your computer and use it in GitHub Desktop.
Save loudej/189665 to your computer and use it in GitHub Desktop.
<!-- bindings.xml -->
<bind element="display">Html.DisplayFor(m=>@for, "@template")</bind>
<bind element="display">Html.DisplayFor(m=>@for)</bind>
<bind element="a">Html.ActionLink("child()", "@action", "@controller", new{"@route.*"}, new{"@*"})</bind>
<bind element="a">Html.ActionLink("child()", "@action", new{"@route.*"}, new{"@*"})</bind>
<!-- sample.spark -->
<display for="m.ShipTo"/>
<display for="m.ShipTo" template="smalladdr"/>
<display for="m.ShipTo" template="${bar}"/>
<a style="color:blue;" action="detail" route.Id="${product.Id}">${product.Name}</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment