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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:59:41+00:00 2026-05-29T22:59:41+00:00

I have a Razor view in my asp.net MVC3 application with a dropdownlist like

  • 0

I have a Razor view in my asp.net MVC3 application with a dropdownlist like this:

@Html.DropDownListFor(model => model.Account.AccountType, new SelectList(Model.AccountTypes, "AccountTypeCode", "Abbreviation"))

This dropdown is inside a form. When form is posted to action method and viewmodel is filled because of model binding, It get the value(AccountTypeCode) and not the text “Abbreviation” property of dropdownlist. I want to get both of these. how can I get these in post action method.

Please suggest.

  • 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-29T22:59:42+00:00Added an answer on May 29, 2026 at 10:59 pm

    If you need more than one property of an object as a value for a dropdown, the easiest way is to create a combination of these in a partial class
    EF 4, how to add partial classes this quesion should help you. You will be able to combine values under one property that you will provide to your dropdown helper.

    If you don’t want to use partial classes I would advise creating your own helper, that will be a lot easier than trying to use something that does not fit your needs. You can do something like :

        @helper CustomDropdown(string name, IEnumerable<AccountTypes> valueList)
            {
            <select>
                @foreach (var item in valueList)
                {
                    <option value="@item.Abbreviation @AccountTypeCode">@item.Abbreviation</option>
                }
            </select>
        }
    

    Google “Creating an Inline HTML Helper” to get some valuable resources on that topic

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

Sidebar

Related Questions

I have created a link for deletion in asp.net mvc3 razor view like this:
I have an ASP.NET MVC3 application in C# and Razor. In the view MyView
I am working on asp.net MVC 3 application. I have created a Razor view
I have an ASP.NET MVC3 in C# and Razor. The architecture of the application
I have an ASP.NET MVC3 in C# and Razor. The architecture of the application
I have created a Razor view in my asp.net MVC 3 application. It is
I have a telerik grid in an asp.net mvc3 (RAZOR) View. While designing I
I have an href in my asp.net MVC3 Razor view and I want to
I have an ASP.NET MVC3 web application with C# and Razor. Through a form
I am working on ASP.net MVC 3.0 Razor View Engine Application. I have a

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.