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 573063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:41:05+00:00 2026-05-13T13:41:05+00:00

hows the best way to display comments/user data from a db using mvc? do

  • 0

hows the best way to display comments/user data from a db using mvc?

do we just do our own for loop and manually display it or? will doing it this way cause paging problems in the future? any best methods or practice?

jquery?

thanks guys.

  • 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-13T13:41:05+00:00Added an answer on May 13, 2026 at 1:41 pm

    When I first started learning MVC, I put a lot of conditional code in the view to manage the display of the data and controls. However, once I figured out the benefit of HTML helpers, I found that it not only reduced the code in my views, but it also made it easier to test the resulting output.

    As an example, this is a code fragment for an entry form that would appear in the finished HTML page:

    <table class="listing">
        <tr>
             <td class="prompt">Last Name:</td>
             <td><input id="LastName" name="LastName" value="Smith" /></td>
        </tr>
        <tr>
             <td class="prompt">First Name:</td>
             <td><input id="FirstName" name="FirstName" value="John" /></td>
        </tr>
        <tr>
             <td class="prompt">Job Title:</td>
             <td><input id="JobTitle" name="JobTitle" value="Manager" /></td>
        </tr>
    </table>
    

    Building the view using standard MVC helpers would result in code that looks something like this:

    <table class="listing">
        <tr>
             <td class="prompt">Last Name:</td>
             <td><%= Html.TextBox("LastName", Model.LastName) %></td>
        </tr>
        <tr>
             <td class="prompt">First Name:</td>
             <td><%= Html.TextBox("FirstName", Model.FirstName) %></td>
        </tr>
        <tr>
             <td class="prompt">Job Title:</td>
             <td><%= Html.TextBox("JobTitle", Model.JobTitle) %></td>
        </tr>
    </table>
    

    However, I was able to create HTML helpers that allowed me to make the view look like this:

    <table class="listing">
        <%= Html.Edit_LastName(Model.LastName) %>
        <%= Html.Edit_FirstName(Model.FirstName) %>
        <%= Html.Edit_JobTitle(Model.JobTitle) %>
    </table>
    

    Here are the HTML helpers:

    private string Edit_Field(string prompt, string fieldName, string value)
    {
        string textBox = helper.TextBox(fieldName, value);
    
        return string.Format("<tr><td class='prompt'>{0}</td><td>{1}</td></tr>", prompt, textBox);
    }
    
    public string Edit_LastName(this HtmlHelper helper, string value)
    {
        return EditField("Last Name:", "LastName", value);
    }
    
    public string Edit_FirstName(this HtmlHelper helper, string value)
    {
        return EditField("First Name:", "FirstName", value);
    }
    
    public string Edit_JobTitle(this HtmlHelper helper, string value)
    {
        return EditField("Job Title:", "JobTitle", value);
    }
    

    This method is not nearly as straightforward as the standard method, but if you have similar controls that are used on multiple views, this approach clearly helps with maintenance. For example, if you want to change the prompt text from “Job Title” to “Position”, you just change the prompt string in the Edit_JobTitle method and the change is reflected in every view where that method is called.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 365k
  • Answers 365k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The iTunes Connect has a guide. Goto the iTunes connect… May 14, 2026 at 3:51 pm
  • Editorial Team
    Editorial Team added an answer I believe that if the form elements that are posted… May 14, 2026 at 3:51 pm
  • Editorial Team
    Editorial Team added an answer Mercurial history is immutable, you can't delete using the normal… May 14, 2026 at 3:51 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.