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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T03:03:19+00:00 2026-06-17T03:03:19+00:00

In Ruby on Rails, there’s a YAML file in the configuration that lets you

  • 0

In Ruby on Rails, there’s a YAML file in the configuration that lets you define plain-English versions of your model property names. Actually, it lets you define plain-any-language versions: it’s part of the internationalization stuff, but most people use it for things like displaying model validation results to the user.

I need that kind of functionality in my .NET MVC 4 project. The user submits a form and gets an email of pretty much everything they posted (the form gets bound to a model). I wrote a helper method to dump out an HTML table of property/value pairs by reflection, e.g.

foreach (PropertyInfo info in obj.GetType()
    .GetProperties(BindingFlags.Public | 
                   BindingFlags.Instance | 
                   BindingFlags.IgnoreCase)) 
{
  if (info.CanRead && !PropertyNamesToExclude.Contains(info.Name)) 
  {
    string value = info.GetValue(obj, null) != null ? 
                                            info.GetValue(obj, null).ToString() :
                                            null;
    html += "<tr><th>" + info.Name + "</th><td>" + value + "</td></tr>";
  }
}

But of course, this prints out info.Name‘s like “OrdererGid”, when maybe “Orderer Username” would be nicer. Is there anything like this in .NET?

  • 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-06-17T03:03:20+00:00Added an answer on June 17, 2026 at 3:03 am

    There is a data attribute called DisplayName which allows you to do this. Just annotate your model properties with this and a friendly name for each

    [DisplayName("Full name")]
    public string FullName { get; set; }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there an equivalent to the collection.build command in Ruby on Rails that builds
Is there any state machine implementation for Ruby or Ruby on Rails that supports
Is there a Ruby/Rails library that I can generate word clouds (output should be
In Ruby/Rails, is there a catch-all rescue statement that also allows for more specific
I've found a couple of different twitter gem (for ruby-on-rails) out there: http://twitter4r.rubyforge.org/ http://twitter.rubyforge.org/
Is there a Rails/Ruby idiom for checking if an enumerable is both present and
Is there any ruby gem/ rails plugin available for parsing the resume and importing
With Ruby on Rails, is there a way for me to dump my production
Are there any visitor statistics solutions for Ruby on Rails? I'm talking something like
Is there an equivalent of htmlspecialchars_decode (PHP) in Ruby (for a Ruby-on-Rails application) Or

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.