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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:30:50+00:00 2026-05-27T23:30:50+00:00

I am trying to create a drop down menu in an ASP.NET using a

  • 0

I am trying to create a drop down menu in an ASP.NET using a text file as the list elements. I want to create the menu from the text file so I can easily add or delete different options without adding the ASP.NET source code. Also, how could I store new options as variables in ASP.NET when more options are added to the text file? My code-behind is c#.
Thanks all,
Stephen

  • 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-27T23:30:50+00:00Added an answer on May 27, 2026 at 11:30 pm

    If you haven’t actually created the text file yet, I would suggest creating an XML text file for this, then using LINQ to XML to pull the values out, and bind them to your dropdown.

    Search on those keywords to find the details on how to do those things.

    your XML file might look like this:

    <?xml version="1.0"?>
    <dropDownValues>
        <entry>
            <text>Dog</text>
            <value>1</value>
        </entry>
        <entry>
            <text>Cat</text>
            <value>2</value>
        </entry>
        <entry>
            <text>Canary</text>
            <value>3</value>
        </entry>
    </dropDownValues>
    

    Then query the data like this:

    var xDoc = XDocument.Load(pathToXmlDocument);
    
    // Return an "anonymous" type that represents your XML document:
    var dropDownValues = xDoc.Descendants("entry")
        .Select(x => new
        {
            Text = x.Element("text").Value,
            Value = x.Element("value").Value
        });
    

    Then bind to your drop down:

    myDropDown.DataSource = dropDownValues;
    myDropDown.DataTextField = "Text";
    myDropDown.DataValueField = "Value";
    myDropDown.DataBind();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create a drop down menu like this in .Net. I can't
I am trying to create a drop down menu using jQuery and CSS. Here
So I am trying to create a drop down menu using .hover() and .toggle().
like the title says, I am trying to create a drop down menu using
I'm trying to create a custom drop down and using the code below it
I'm trying to create a drop-down menu acting as the sub-menu of a main
Possible Duplicate: CSS Drop Down Menu I am trying to create a drop down
I am trying to create drop down menus for my app, and I want
I am trying to create a drop-down-menu and i am having some problems with
Hi i am trying to create drop down menu with javascript where once i

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.