Trailing on the lead from Chris Blankenship and his singlepost user control, I created a multi-post user control. I’ve never been quite satisfied with the results of the recent posts control and Chris’s control filled in enough gaps for me to pursue this further.
I happen to keep my custom controls in /UserCustom instead of /UserControls. That way, I know these controls are not Blog Engine.Net controls and won’t need to be merged in the future.
Example
I purchased a new Dell XPS M1530 laptop at the end of 2008. I've grown to prefer desktops for the preferred improvements in reliability, cost, and performance, not to mention I use a 22" LCD monitor. I really didn't want a laptop. Nevertheless, I was working on a contract that was going to require quite a bit of traveling and using the desktop on the road wasn't an option and the old Toshiba laptop I had was on it's last CPU cycles.
Which remote works with which Nikon? Most new Nikon cameras don't come with a remote control. Some camera bodies will work with multiple remotes (wired and wireless), but unlike the legendary Nikon interchangeable lenses, the remotes don't switch between camera bodies so easily. Here's a quick guide on which remotes work with which cameras and what's the best Nikon remote for your camera.
Microsoft has a great deal for small business with a free version of Accounting Express 2009. It can create estimates, invoices, track customer payments, set product and service pricing and can export and import data using Microsoft Excel formats, and can export to e-mails, Microsoft Word documents, or PDF files, and even sell items on eBay.
Usage from ASP
1: <%@ Register src="../../UserCustom/MultiPosts.ascx" tagname="MultiPosts" tagprefix="uc7" %>
1: <uc7:MultiPosts ID="MultiPosts1" runat="server"
2: CategoryList="photography"
3: ContentLength="120"
4: Count="3"
5: DateFormat="{0:MM/dd/yyyy}"
6: ShowAuthor="false"
7: ShowContent="true"
8: ShowDate="false"
9: ShowDescription="true"
10: ShowTitle="true" />
Usage in Posts or Pages
Remove the space between the bracke and the word usercontrol.
1: [ usercontrol: ~/UserCustom/MultiPosts.ascx
2: ShowDescription=true;
3: Count=3;
4: ShowContent=false;
5: ShowAuthor=true;
6: ShowDate=true;
7: ShowTitle=true;
8: ContentLength=360;
9: CategoryList=photography;
10: DateFormat={0:MM/dd/yyyy}; ]
Post.cs Add AuthorAbsoluteLink
In order to reduce some of the clutter in the ASCX control template, I created a new property on the Post object to display the Authors link. If you want to stay with the mainline BE code base, you’ll need to modify the ASCX to set the asp:Hyperlink for AuthorLink to the code shown below.
1: public Uri AuthorAbsoluteLink
2: {
3: get
4: {
5: string authorLink = Utils.RemoveIllegalCharacters(Author);
6: authorLink = Utils.RelativeWebRoot + "author/" + HttpContext.Current.Server.UrlEncode(authorLink) + BlogSettings.Instance.FileExtension;
7: return Utils.ConvertToAbsolute(authorLink);
8: }
9: }
Download
UserCustom.zip (2.37 kb)