Created
January 23, 2011 02:19
-
-
Save azcoov/791743 to your computer and use it in GitHub Desktop.
Tag Cloud Partial View
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> | |
<div id="recent-tags"> | |
<% foreach (var t in (IEnumerable<Models.BlogCategory>)ViewData["TagCloud"]) | |
{%> | |
<a href="http://mysite/Blog/Listing/<%= Html.Encode(t.Category) %>" class="<%= BlogHelper.GetTagClass(t.BlogCategory_ID) %>" ><%= t.Category %></a> | |
<% }%> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment