У меня есть этот код, который использует LINQ для заполнения DropDownList:
var userCategories = DataAccessLayer.Context.Categories
.Where(c => c.UserName == HttpContext.Current.User.Identity.Name)
.Select(c => new { c.ID, c.Category })
.OrderBy(c => c.Category);
CategoryDropDownList.DataSource = userCategories;
CategoryDropDownList.DataValueField = "ID";
CategoryDropDownList.DataTextField = "Category";
CategoryDropDownList.DataBind();
Где бы я поместил Server.HtmlDecode для категории?