var blogBody = "";
if (searchType == "BlogPost") // only showing an example of BlogPost for now
{
for (var i = 0; i < 10; i++)
blogBody = searchResults[i].PostDate;
htmlString += "<table width=\"600\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"80\" height=\"100\"><div align=\"center\"><img src=\"" + searchResults[i].PostAuthor.AvatarPhotoUrl + "\" width=\"80\" /><br />" + searchResults[i].PostAuthor.DisplayName + "</div></td><td width=\"10\" valign=\"top\"> </td><td width=\"480\" valign=\"top\"><div class=\"blog_title_text\"><a href=\"" + searchResults[i].Url + "\">" + searchResults[i].PostTitle + "</a></div><div class=\"blog_body_text\">" + searchResults[i].PostBody.substring(0, 250) + "...</div><strong> posted on:</strong>" + blogBody + "</td></tr></table><br />";
}
|