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?
sandModel.Idneed 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