Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Trying to figure out which makes more sense

<%foreach (var item in Model.items)
   {
%>
<tr>
    <td>
        <% if (!item.isMgmt)
           {  %>
        <a href="/MVC/AzureMail/Unfiled/<%:item.uName %>">
            <%:item.uName%></a>
        <% }
           else
           { %>
        <%:item.uName %>
        <% } %>
    </td>
</tr>
<% } %>

or

 <%foreach (var item in Model.items)
   {
%>
<tr>
    <td>
        <% if (!item.isMgmt)
           {  %>
        <a href="/MVC/AzureMail/Unfiled/<%:item.uName %>">
        <% } %>
              <%:item.uName%>
        <% if (!item.isMgmt)
           {  %>
              </a>
        <% } %>
    </td>
</tr>
<% } %>
share|improve this question
I would if people answered my questions (I did just go through and mark as answer all the things that I answered myself) – Hurricanepkt Jul 26 '10 at 14:06

6 Answers

up vote 12 down vote accepted

3rd option; an extension method for conditional link.

public static string ConditionalHyperlink(this HtmlHelper helper, string url, string text, bool shouldLink){
 ...
}

This keeps your View much more readable.

<%= Html.ConditionalHyperlink("/MVC/AzureMail/Unfiled/" + item.Name, item.Name, item.isMgmt) %>
share|improve this answer
2  
+1 I like helpers:). – Ahmad Jul 26 '10 at 13:30
Nice; +1 for helper extensions :-) – WestDiscGolf Jul 26 '10 at 15:25

The first option. It seems more logical to have the all the related logic that creates the link in statement as opposed to the split in option 2.

Edit: I think most agree that option 1 is better. I am a proponent of HtmlHelpers (=cleaner views), so my additional suggestion would be that you create a Helper that wrap the logic you present.

share|improve this answer

I think the first one makes the most sense, but I'm not sure if there's really a right or wrong answer here. Just from a clarity standpoint the second one seems less readable.

share|improve this answer

in my opinion, the 1st example makes most sense as it keeps the href and closing tag within the same logical processing statement location. the second example get's repititious and could lead to errors if the code builds up and separates the two identical conditions as per #2.

anyway, just my thoughts

share|improve this answer

Really, you should consider having a view Model that wraps your domain model. Then your view model would contain a property that your view just renders and leave the logic of deciding the contents of that property to your controller. So, in your case you would have a property that returns a string called something like RenderName and set the value of that to be an HREF if isMgmt is true or a plain string if not. Then in your view you can just do this:

<%foreach (var item in Model.items)
   {
%>
<tr>
    <td>
        <%:item.RenderName %>
    </td>
</tr>
<% } %>

This way your View has nothing to do with making decisions and you don't have any ugly mark-up.

share|improve this answer
<%foreach (var item in Model.items)
{
%>
<tr>
    <td>
        <%: item.isMgmt ? item.uName : string.format("<a href=\"/MVC/AzureMail/Unfiled/{0}\"">{0}</a>, item.uName) %>
    </td>
</tr>
<% } %>

I'd still recommend using the html helpers, too

share|improve this answer
I think your link is malformed - something like @"<a href="/MVC/AzureMail/Unfiled/{0}">{0}</a>" – Ahmad Jul 26 '10 at 13:34

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.