Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a view that's building a drop down list based on what's sent from the model.

@{
StringBuilder sb = new StringBuilder("<select id=\"field"+Model.Id+"\">");
sb.Append("<option>Choose...</option>");
foreach(var s in Model.Choices)
{
    sb.Append("<option>" + s + "</option>");
}
sb.Append("</select>");
var str = sb.ToString();
}

$("#label" + "@Model.Id").html("@str");

But in the browser, instead of it creating a drop down list, it's actually outputting the entire string "<select id="field3"><option>Choose...</option><option>Movie</option><option>TV Show</option><option>Shorts</option></select>"

Why is it doing this and how can I get it to show the actual drop down list?

share|improve this question
2  
Oh sure, blame the StringBuilder. – user414076 Jul 13 '11 at 19:35
You could also create a select list from the Model.Choices and use the Html.DropDownList helper. Let me know if you need code. – Richard Jul 13 '11 at 19:36
As a side note - you might want to check whether s and Model.Id need to be encoded. Unless they are integers, they probably should be - otherwise you risk client-side injection (XSS etc). – Marc Gravell Jul 13 '11 at 19:42

1 Answer

up vote 5 down vote accepted

what you need is HtmlString.

@{
StringBuilder sb = new StringBuilder("<select id=\"field"+Model.Id+"\">");
sb.Append("<option>Choose...</option>");
foreach(var s in Model.Choices)
{
    sb.Append("<option>" + s + "</option>");
}
sb.Append("</select>");
var str = new HtmlString(sb.ToString());
}

Strings are now automatically Html encoded if they are plain strings but an HtmlString object is rendered as is.

Hope this helps.

share|improve this answer
Hey, thanks for the help. I'll accept the answer as soon as I can. – user558594 Jul 13 '11 at 19:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.