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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T18:20:50+00:00 2026-06-06T18:20:50+00:00

I have a listbox that I am populating using a foreach. (Long explanation of

  • 0

I have a listbox that I am populating using a foreach. (Long explanation of why I need to do this.)
I need to escape the string because fname and lname can contain special characters, like ‘ or “.

foreach (var cust in item.Customers)
{
    var custString = string.Format("{0}%#%{1}%#%{2}", cust.CustID, cust.LName, cust.FName);

    <option value="@custString">@cust.DisplayName</option>
}

Is there any way to do a javascript escape of custString right after setting the value? Or is there there a preferred C# way of escaping that will work well with javascript’s unescape, which I am using to unescape these chars.

  • 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-06T18:20:53+00:00Added an answer on June 6, 2026 at 6:20 pm

    That’s what the AttributeEncode helper does:

    <option value="@Html.AttributeEncode(custString)">@cust.DisplayName</option>
    

    But hey, what are you doing? foreach loop to generate a dropdown list????

    Try the Html.DropDownListFor helper and stop the bleeding inside your view before its too late. This helper does what its name suggests. And takes care of encoding and escaping and whatever.

    So simply define a view model:

    public class MyViewModel
    {
        public string CustomerId { get; set; }
        public IEnumerable<SelectListItem> Customers { get; set; }
    }
    

    then go ahead and have your controller action populate and pass this view model to the view:

    public ActionResult Index()
    {
        IEnumerable<Customer> customers = ... fetch the domain model from your DAL or something
        // map to a view model:
        var viewModel = new MyViewModel
        {
            Customers = customers.Select(x => new SelectListItem
            {
                Value = x.CustID,
                Text = string.Format("{0}%#%{1}%#%{2}", x.CustID, x.LName, x.FName)
            })
        };
    
        // pass the view model to the view:
        return View(viewModel);
    }
    

    and inside the view, use the DropDownListFor helper when you need to generate a dropdown list:

    @Html.DropDownListFor(x => x.CustomerId, Model.Customers)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a listbox that displays Shipment Items (custom class) that are formatted using
i have a listbox that is populated this way with two Databindings (Frage and
I have a listbox that is bound to a List<T> -- this is working
I have a listbox that has a List assigned as datasource: List<String> files =
I have a ListBox that has a style defined for ListBoxItems. Inside this style,
i have a list: <asp:ListBox ID=lstProblems runat=server SelectionMode=Multiple></asp:ListBox> and i am populating it this
I have a listbox that in which every item is represented using a textbox.
I have a ListBox that I bind to an ItemsSource, like this: var foos
I have a listbox that's populated by jQuery & JSON like this: $(function(){ $.getJSON(jsonulmeu.php,
I have a ListBox that contains a System.net.IPAddress and string items. I want to

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.