%@ Page Language="C#" Inherits="StrategicHorizons.ArticleSearch.Presentation.UserSearchPage" EnableSessionState="false" EnableViewState="true" ErrorPage="searchError.html" Trace="false" Debug="true" %>
<%@ Import Namespace="StrategicHorizons.ArticleSearch.Business" %>
<%@ Import Namespace="StrategicHorizons.ArticleSearch.Persistence" %>
<%@ OutputCache Location="none" %>
Other Writings
Pine & Gilmore are prolific writers, having bylined more than 90 articles between the two of them (and generally together). Search their writings by title or keyword in the search box below, or browse the entire list of writings.
<% if (IsPostBack) { %>
Results
<% if (ArticleList == null) { %>
No articles matched your request, please try a different search.
<% } else { %>
We have <%=ArticleList.Count%> article(s) matching your request.
<% foreach(Article a in ArticleList) { %>
" target="_blank"><%=a.Title%>
By <%=a.Author%>
<%=a.Publication%> | <%=a.PublicationDetails%>
<%=a.Summary%>
<% } %>
<% } %>
<% } %>