Best practice for conditional output in ASP.NET MVC?
- by RyanW
I'm ramping up on ASP.NET MVC and looking at how I output messages in the view.  What's the best way to do something like this?  Helpers?  Controls?  Or just as is?
<% if (ViewData.ContainsKey("message") && !string.IsNullOrEmpty(ViewData["message"].ToString())) { %>
    <div class="notice">
        <%= ViewData["message"] %>
    </div>
<% } %>