Skip to content

Instantly share code, notes, and snippets.

View muhlisatac's full-sized avatar

Muhlis muhlisatac

  • Ankara
  • 12:22 (UTC +03:00)
View GitHub Profile
@danielmackay
danielmackay / Html Helper Collection.cs
Created March 9, 2014 05:19
A collection of MVC HTML helpers for bootstrap alerts, buttons, pagingation, and more. #mvc, #bootstrap.
public static class HtmlHelpers
{
public static HtmlString BootstrapAlert(this HtmlHelper htmlHelper, string message, Enums.AlertType alertType)
{
return BootstrapAlert(htmlHelper, new List<string>() { message }, alertType); ;
}
public static HtmlString BootstrapAlert(this HtmlHelper htmlHelper, List<string> messages, Enums.AlertType alertType)
{
_BootstrapAlertModel model = new _BootstrapAlertModel() { Messages = messages };