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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:58:19+00:00 2026-06-08T13:58:19+00:00

I want to set first option value to 0 instead leaving it blank. How

  • 0

I want to set first option value to 0 instead leaving it blank. How can I set this?
i.e

<select id="PatentId" name="ParentId">
     <option value="0">--Select--</option>
     <option value="1">Books</option>
      // other options
</select>

My code is as

<div class="editor-field">
     @Html.DropDownList("ParentId","--Select--")
     @Html.ValidationMessageFor(model => model.ParentId)
</div>
  • 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-08T13:58:22+00:00Added an answer on June 8, 2026 at 1:58 pm

    Finally I found the following code working

    private SelectList AddFirstItem(SelectList list)
    {
       List<SelectListItem> _list = list.ToList();
       _list.Insert(0, new SelectListItem() { Value = "0", Text = "--Select--" });
       return new SelectList((IEnumerable<SelectListItem>)_list, "Value", "Text", list.SelectedValue);
    }
    

    Keep the “Value” and “Text”. The Last one list.SelectedValue is to keep selected values as it is.

    You can use the above function like

    public ActionResult Create()
    {
        ViewBag.ParentId = AddFirstItem(new SelectList(db.Categories, "Id", "Name"));
        return View();
    } 
    

    It worked.

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

Sidebar

Related Questions

I want to create a line chart using 2 set of values.First value (i.e
Hi I have a html select tag like this: <select name = options> <option
How do I set an option value in select list with jQuery? I tried:
I want to set the first letter in each line to caps in notepad++..how
I want to sort results set first based on one column and then based
Hi friends, I am trying to set the value of the select box using
I want to remember the directory what user entered first time and then set
I have the following: HTML <select class=dropDownList id=PersonFunction> <option value=>Choose</option> <option value=1>Vice President</option> <option
I have this function that gives me a set of options in a select
I want set interfaceOrientation in one UIView as LandscapeLeft and Portrait in other UIView.

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.