Skip to content

Instantly share code, notes, and snippets.

View jeremypage's full-sized avatar

Jeremy Page jeremypage

  • Trafford Council
  • UK
View GitHub Profile
...
@using (Html.BeginContensisForm("MyAction", "api/MyApiController"))
{
@Html.ValidationSummary("Validation Summary", new { @class = "validation-summary-class" })
<div class="form-group">
<label for="firstname">Firstname:</label>
@Html.TextBox("Firstname", null, new { @type = "email", @class = "form-control" })
</div>
...
}
@impressivewebs
impressivewebs / gist:f7f079b276f56c5bd900
Created December 23, 2014 08:31
HTML Inspector Bookmarklet
javascript:void((function(d){h=d.createElement('script');h.src='//cdnjs.cloudflare.com/ajax/libs/html-inspector/0.8.1/html-inspector.js';d.body.appendChild(h);})(document));