show/hide this revision's text 3 added 93 characters in body
<% if (Model.PreviousPost || Model.NextPost) { %>
    <div class="pager">
    	<% if (Model.PreviousPost) { %>
    		<span><% Html.ActionLink("<< " + Model.PreviousPost.Subject, "view")); %></span>
    	<% } if (Model.NextPost) { %>
    		<span><% Html.ActionLink(Model.NextPost.Subject + " >>", "view")); %></span>
    	<% } %>
    </div>
<% } %>

You can make another post asking how to do this without including the embeded CSS.

NOTE: ViewData.Model becomes Model in the next release.

And with the aid of a user control this would become

<% Html.RenderPartial("Pager", Model.PagerData) %>

where PagerData is initialized via an anonymous constructor in the action handler.

edit: I'm curious what your WebForm implementation would look like for this problem.

show/hide this revision's text 2 deleted 32 characters in body
<% if (Model.PreviousPost != null || Model.NextPost!= null) { %>
    <div class="pager">
    	<% if (Model.PreviousPost != null) Model.PreviousPost) { %>
    		<span><% Html.ActionLink("<< " + Model.PreviousPost.Subject, "view")); %></span>
    	<% } if (Model.NextPost != null) Model.NextPost) { %>
    		<span><% Html.ActionLink(Model.NextPost.Subject + " >>", "view")); %></span>
    	<% } %>
    </div>
<% } %>

You can make another post asking how to do this without including the embeded CSS.

NOTE: ViewData.Model becomes Model in the next release.

And with the aid of a user control this would become

<% Html.RenderPartial("Pager", Model.PagerData) %>

where PagerData is initialized via an anonymous constructor in the action handler.

show/hide this revision's text 1
<% if (Model.PreviousPost != null || Model.NextPost != null) { %>
    <div class="pager">
    	<% if (Model.PreviousPost != null) { %>
    		<span><% Html.ActionLink("<< " + Model.PreviousPost.Subject, "view")); %></span>
    	<% } if (Model.NextPost != null) { %>
    		<span><% Html.ActionLink(Model.NextPost.Subject + " >>", "view")); %></span>
    	<% } %>
    </div>
<% } %>

You can make another post asking how to do this without including the embeded CSS.

NOTE: ViewData.Model becomes Model in the next release.

And with the aid of a user control this would become

<% Html.RenderPartial("Pager", Model.PagerData) %>

where PagerData is initialized via an anonymous constructor in the action handler.