Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Ridiculously simple Gravatar integration for Asp.Net MVC: @Html.GravatarImage("user.name@email.com")

Notifications You must be signed in to change notification settings

github-0115/Gravatar-HtmlHelper

Repository files navigation

Gravatar HtmlHelper for ASP.Net MVC

This is a complete implementation of the Gravatar image request API, according the Gravatar documentation, as an ASP.Net MVC HtmlHelper.

Features

  • Size
  • Default image (404, mystery-man, identicon, monsterid, wavatar, retro)
  • Custom default image (url)
  • Force default image
  • Ratings
  • Secure requests (HTTPS) is automatic (but can be forced)
  • Named and Optional Arguments for .Net 4.0 and above
  • Custom CSS class attribute string (cssClass)
  • Custom alt attribute string alt)

Getting Started

  1. Drop the GravatarHtmlHelper_{version}.cs file anywhere in your ASP.Net MVC project:

    GravatarHtmlHelper_NetCore.cs πŸ†•
    for .Net Core / ASP.Net Core MVC

    GravatarHtmlHelper_Net40.cs
    for .Net 4.0+ / ASP.Net MVC 3, 4, 5+

    GravatarHtmlHelper_Net35.cs
    for .Net 3.5 / ASP.Net MVC 2.0

  2. Recompile and start using it in your Views:

@Html.GravatarImage("user.name@email.com")
@Html.GravatarImage(
 "user.name@email.com",
 size: 32,
 defaultImage: GravatarHtmlHelper.DefaultImage.Identicon,
 rating: GravatarHtmlHelper.Rating.PG,
 cssClass: "gravatar img-responsive")

That's it. No attribution required, but feel free to leave a comment on my blog if you find it useful

Alternatives

Mark Mailer has a TagHelper implementation for ASP.Net Core MVC

About

Ridiculously simple Gravatar integration for Asp.Net MVC: @Html.GravatarImage("user.name@email.com")

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /