This code worked (correctly reflected the user's current timezone) back in the aspx version.
<%= Html.DropDownList("User.TimeZone", AppHelper.GetUSTimeZones(Model.TimeZone))%>
In switching to Razor I'm finding that the rendered control does not place the user's timezone as the selected item.
I've reviewed this question and see that others have experienced the same issue. Shouldn't I expect HtmlHelpers to work the same when moving to Razor?