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

  • Home
  • SEARCH
  • 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 a new web part and now I am getting this error
I just wrote my first web service so lets make the assumption that my
I just wrote the following C++ function to programmatically determine how much RAM a
I just wrote an if statement in the lines of if (value == value1
I have a macro that I wrote to just help me with my unit
I wrote a simple web service in C# using SharpDevelop (which I just got
I just lost 50% of my answer on a test because I wrote the
I just wanted to pause in an F# console application, so I wrote: Console.ReadKey()
I've got an application that just shipped. Since I wrote it, I've learned about
I've just had to write a string reverse function in C# 2.0 (i.e. LINQ

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.