Hi,
I thought I would try out creating my own item type following the guide here: http://developer.dynamicweb.com/documentation/for-developers/item-based-structure/getting-started.aspx
I am coding on a Mac using Xamarin Studio.
- I created a new empty ASP.NET solution
- I added an empty C# class
- I pasted the code (see below) and build the DLL
- I uploaded the DLL to the bin folder on a test solution
- I opened items in management center, no "BlogPost" item
- I tried to press "Refresh", no "BlogPost" item
What am I doing wrong? My DLL is attached.
Med venlig hilsen/Best regards,
Sten Hougaard
Webudvikler
E: sho@1stweb.dk
M: 29850818
A: København/Aarhus . W: www.1stweb.dk
@: netsi1964
using System; using Dynamicweb.Content.Items; namespace sho { public class BlogPost : ItemEntry { public string Heading { get; set; } } }