Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 815037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:37:04+00:00 2026-05-15T01:37:04+00:00

I just wrote perhaps the ugliest bit of MVC code in existence. It is:

  • 0

I just wrote perhaps the ugliest bit of MVC code in existence. It is:

<table>    
<tr>
<% 
    int i = 0;
    foreach(Thyla.Models.Tag tag in this.Model)
    {
        i += 1;
%>
<td>
<span>
    <input type="checkbox" name="TagSelector" id='<%= tag.TagName%>' value='<%= tag.TagName%>' />
    <label for="<%= tag.TagName%>" title="<%= tag.TagName%>"><%= tag.TagName%></label>
</span>
</td>

        <%if (i % 5 == 0){%>
        </tr><tr>
        <%} %>
    <%} %>
<% if (i % 5 != 0){%></tr><%} %>
</table>

What is the canonical approach to making a checkbox list with a specified number of columns in ASP.NET MVC?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T01:37:05+00:00Added an answer on May 15, 2026 at 1:37 am

    Does it really need to be 5? I ask because each tag will be a different width so it’ll look ragged anyway. And if you have 5 long tags next to each other they may bleed into the space reserved for other things which is why I think you’re saying make it 5 columns.

    You you could end up with a tag of vege appearing over a tag called vegetable-patch. Then there would be a huge gap between vege and it’s nect column. looks a little odd.

    I used a free one. Source included here though I forget where it’s from.

    Hope this helps.

    This is the Helper

    public static class MVCTagList
    {
        public static string TagList(this HtmlHelper helper, IEnumerable<String> tagListItems, object htmlAttributes)
        {
            StringBuilder TagListMarkup = new StringBuilder();
    
            TagListMarkup.Append("<ul");
            if (htmlAttributes != null) TagListMarkup.Append(" " + htmlAttributes.ToAttributeList());
            TagListMarkup.Append(">");
    
            foreach (string tagListItem in tagListItems)
            {
                TagListMarkup.Append("<li>");
                TagListMarkup.Append(String.Format("<a href='/Articles/?tag={0}'>{0}</a>", tagListItem));
                TagListMarkup.Append("</li> ");
            }
    
            TagListMarkup.Append("</ul>");
    
            return TagListMarkup.ToString();
        }
    }
    

    This is the HTML

    <div style="width:450px; margin-left:50px; ">
        <%
            List<String> TagListItems = new List<string>();
            foreach (var tag in Model)
                TagListItems.Add(tag.keyword1);
        %>
        <%= Html.TagList( TagListItems.AsEnumerable(), new { @class="TagList" })%>
    </div>
    

    And the CSS

    .TagList { margin: 0 0 0 0; padding: 0 0 0 0; }
    .TagList li { display:inline; border:1px solid; background-color:#316AC5; margin-left:3px; padding: 3px 3px 3px 3px; line-height:2em;}
    .TagList li a { text-decoration:none; color: white; font-size:85%; white-space:nowrap; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just wrote this into my WebForms .aspx: <span id=GenerateChartButton runat=server></span> I went to
I just wrote some code to test the behavior of std::equal, and came away
I'm really confused, I just wrote this x = 0 y = 42 #Can
perhaps I'm having a dumb moment, but I just can't seem to work this
Is there an existing function (or perhaps someone wrote some existing code) to validate
I just wrote some JavaScript code that follows along with what I believe to
Just wrote a web service and try to return columns of a sharepoint list
I just wrote a very simple perl tk script to read a huge text
I just wrote some new utility methods within a non-page class for an existing
I just wrote a PHP login script, and what I'm trying to accomplish is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.